mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00
don't try to localize traceback
This commit is contained in:
parent
88581105d4
commit
634db40e56
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ class Sync(QThread):
|
|||
elif error.data.get('status') == "oldVersion":
|
||||
msg=_("The sync protocol has changed. Please upgrade.")
|
||||
else:
|
||||
msg=_("Unknown error: %s" % traceback.format_exc())
|
||||
msg=_("Unknown error: %s") % traceback.format_exc()
|
||||
return msg
|
||||
|
||||
def connect(self, *args):
|
||||
|
|
Loading…
Reference in a new issue