Skip to content

Commit

Permalink
Supporting string exceptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjbq7 committed Jun 10, 2010
1 parent 694d476 commit 7c58157
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tracsql/web_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ def _process(self, req, cursor, data):
took = '%.3f' % (time.time() - start)
except BaseException, e:
error = e.message
except e:
error = e

if csv:
text = []
Expand Down

0 comments on commit 7c58157

Please sign in to comment.