HomeFreeBSD

Use py3 compatible method for catching exceptions

Description

Use py3 compatible method for catching exceptions

Now ancient versions of python used to support catching exceptions in the form
except Exception, exception_object. This support was removed in py3 (and
introduced preemptively in earlier 2.x versions), being replaced by the form
except Exception as exception_object.

Details

Provenance
ngieAuthored on
Parents
rS346446: Hack away at runtests
Branches
Unknown
Tags
Unknown