obsync: add missing package specifier to format_exc

Fixes: #2873
Signed-off-by: Matthew Wodrich <matthew.wodrich@dreamhost.com>
Reviewed-by: Dan Mick <dan.mick@inktank.com>
This commit is contained in:
Matthew Wodrich 2012-07-31 19:13:03 -07:00 committed by Dan Mick
parent a15fde495f
commit 5962a9dde0

View File

@ -108,7 +108,7 @@ class ObsyncException(Exception):
self.comment = e
else:
# from another exception
self.tb = format_exc(100000)
self.tb = traceback.format_exc(100000)
self.comment = None
self.ty = ty