Skip to content

Commit

Permalink
missing exception message in print
Browse files Browse the repository at this point in the history
  • Loading branch information
xmendez committed Oct 29, 2018
1 parent e71324b commit 9726dbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wfuzz/wfuzz.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def main():
if fz:
fz.cancel_job()
except NotImplementedError as e:
print("\nFatal exception: Error importing wfuzz extensions")
print("\nFatal exception: Error importing wfuzz extensions: {}".format(str(e))
except Exception as e:
print("\nUnhandled exception: {}".format(str(e)))
finally:
Expand Down

0 comments on commit 9726dbf

Please sign in to comment.