Changes between Initial Version and Version 1 of Ticket #23525


Ignore:
Timestamp:
Sep 19, 2014, 3:30:29 PM (10 years ago)
Author:
Welborn Productions
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23525 – Description

    initial v1  
    2222try:
    2323   # ...same code from above.
    24 except OSError, AttributeError:
     24except (OSError, AttributeError):
    2525    libraries = []
    2626}}}
     27
     28
     29I thought about refactoring this and maybe expanding the for-loop so `AttributeError` is only caught where needed, but chose instead to make the least invasive change possible.
Back to Top