Blob Blame History Raw
=== modified file 'fedora/client/proxyclient.py'
--- fedora/client/proxyclient.py	2008-11-25 22:12:25 +0000
+++ fedora/client/proxyclient.py	2009-02-10 16:01:10 +0000
@@ -266,7 +266,7 @@
         elif http_status >= 400:
             try:
                 msg = httplib.responses[http_status]
-            except KeyError:
+            except (KeyError, AttributeError):
                 msg = 'Unknown HTTP Server Response'
             raise ServerError(url, http_status, msg)