Closed adeutscher closed 10 years ago
Ran into an issue when setting up DirectoryTools with a system using Python 2.4.
The problem is due to my catching exceptions using except ErrorType as e. Python 2.5 and below on this system does not accept this syntax.
except ErrorType as e
All catches that use as need to be re-phased to use except ErrorType, e.
as
except ErrorType, e
Ran into an issue when setting up DirectoryTools with a system using Python 2.4.
The problem is due to my catching exceptions using
except ErrorType as e
. Python 2.5 and below on this system does not accept this syntax.All catches that use
as
need to be re-phased to useexcept ErrorType, e
.