Skip to content

Commit

Permalink
__main__: fix refactoring error.
Browse files Browse the repository at this point in the history
whitequark committed Apr 26, 2016
1 parent 8bdc7ba commit 6f4c35e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pythonparser/__main__.py
Original file line number Diff line number Diff line change
@@ -13,6 +13,6 @@
print(root)
print("elapsed: %.2f (%.2f kb/s)" % (interval, len(input)/interval/1000),
file=sys.stderr)
except diagnostic.DiagnosticException as e:
except diagnostic.Error as e:
print("\n".join(e.diagnostic.render()),
file=sys.stderr)

0 comments on commit 6f4c35e

Please sign in to comment.