mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
make sure we decode full traceback on addon err (#954)
This commit is contained in:
parent
fe3ce87020
commit
e7be6fd4be
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ class Downloader(QThread):
|
|||
try:
|
||||
self.error = unicode(e[0], "utf8", "ignore")
|
||||
except:
|
||||
self.error = exc
|
||||
self.error = unicode(exc, "utf8", "ignore")
|
||||
return
|
||||
finally:
|
||||
remHook("httpRecv", recvEvent)
|
||||
|
|
Loading…
Reference in a new issue