From 5962a9dde051c95b7f39e60dcd16b339392685b8 Mon Sep 17 00:00:00 2001 From: Matthew Wodrich Date: Tue, 31 Jul 2012 19:13:03 -0700 Subject: [PATCH] obsync: add missing package specifier to format_exc Fixes: #2873 Signed-off-by: Matthew Wodrich Reviewed-by: Dan Mick --- src/obsync/obsync | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/obsync/obsync b/src/obsync/obsync index 9536eab84db48..e1509c46f517d 100755 --- a/src/obsync/obsync +++ b/src/obsync/obsync @@ -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 -- 2.39.5