From 5144de39ddf94520e5b20dd28946d7a75983ab9f Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Wed, 10 Oct 2012 20:33:43 +0900 Subject: [PATCH] friendly proxy authentication error --- aqt/sync.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aqt/sync.py b/aqt/sync.py index 4ea6e8a47..daef87553 100644 --- a/aqt/sync.py +++ b/aqt/sync.py @@ -132,6 +132,8 @@ AnkiWeb is too busy at the moment. Please try again in a few minutes.""") elif "10060" in err: return _( "Antivirus or firewall software is preventing Anki from connecting to the internet.") + elif "407" in err: + return _("Proxy authentication required.") return err def _getUserPass(self):