Changes between Initial Version and Version 1 of Ticket #23525
- Timestamp:
- Sep 19, 2014, 3:30:29 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23525 – Description
initial v1 22 22 try: 23 23 # ...same code from above. 24 except OSError, AttributeError:24 except (OSError, AttributeError): 25 25 libraries = [] 26 26 }}} 27 28 29 I 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.