Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
2.0.0, 1.x, 0.10.3
-
None
Description
There is typo in the exception handling branch in storm.py:: exec_storm_class():
try:
ret = sub.check_output(all_args, stderr=sub.STDOUT)
print(ret)
except sub.CalledProcessor as e:
sys.exit(e.returncode)
There is no "CalledProcessor" type of exception exists in subprocess module.
The correct exception name is CalledProcessError.
Attachments
Issue Links
- links to