mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
include full traceback on sync error
This commit is contained in:
parent
744d9abfdb
commit
ff8b58de21
1 changed files with 1 additions and 1 deletions
|
@ -329,7 +329,7 @@ class SyncThread(QThread):
|
|||
err = log
|
||||
if not isinstance(err, unicode):
|
||||
err = unicode(err, "utf8", "replace")
|
||||
self.fireEvent("error", err)
|
||||
self.fireEvent("error", traceback.format_exc())
|
||||
return
|
||||
if ret == "badAuth":
|
||||
return self.fireEvent("badAuth")
|
||||
|
|
Loading…
Reference in a new issue