Closed marcoeilers closed 7 years ago
In a try-except block, with code like except Exception as e: ..., the variable e is unknown in the except block.
except Exception as e: ...
e
Fixed in pull request #34.
In a try-except block, with code like
except Exception as e: ...
, the variablee
is unknown in the except block.