improve add-on downloading error readability

This commit is contained in:
Damien Elmes 2019-02-26 09:36:20 +10:00
parent 139e04c7c3
commit 4116ab65b0

View File

@ -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)