mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
improve add-on downloading error readability
This commit is contained in:
parent
139e04c7c3
commit
4116ab65b0
1 changed files with 2 additions and 6 deletions
|
@ -60,14 +60,10 @@ class Downloader(QThread):
|
|||
self.error = _("Invalid code, or add-on not available for your version of Anki.")
|
||||
return
|
||||
else:
|
||||
self.error = _("Error downloading: %s" % resp.status_code)
|
||||
self.error = _("Unexpected response code: %s" % resp.status_code)
|
||||
return
|
||||
except Exception as e:
|
||||
exc = traceback.format_exc()
|
||||
try:
|
||||
self.error = str(e[0])
|
||||
except:
|
||||
self.error = str(exc)
|
||||
self.error = _("Please check your internet connection.") + "\n\n" + str(e)
|
||||
return
|
||||
finally:
|
||||
remHook("httpRecv", recvEvent)
|
||||
|
|
Loading…
Reference in a new issue