don't try to localize traceback

This commit is contained in:
Damien Elmes 2010-06-28 11:31:54 +09:00
parent 88581105d4
commit 634db40e56

View file

@ -72,7 +72,7 @@ class Sync(QThread):
elif error.data.get('status') == "oldVersion": elif error.data.get('status') == "oldVersion":
msg=_("The sync protocol has changed. Please upgrade.") msg=_("The sync protocol has changed. Please upgrade.")
else: else:
msg=_("Unknown error: %s" % traceback.format_exc()) msg=_("Unknown error: %s") % traceback.format_exc()
return msg return msg
def connect(self, *args): def connect(self, *args):