aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/http.py
diff options
context:
space:
mode:
Diffstat (limited to 'netlib/http.py')
-rw-r--r--netlib/http.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/netlib/http.py b/netlib/http.py
index 51f85627..f5b8118a 100644
--- a/netlib/http.py
+++ b/netlib/http.py
@@ -1,15 +1,15 @@
import string, urlparse, binascii
import odict, utils
-class HttpError(Exception):
- def __init__(self, code, msg):
- self.code, self.msg = code, msg
- def __str__(self):
- return "HttpError(%s, %s)"%(self.code, self.msg)
+class HttpError(Exception):
+ def __init__(self, code, message):
+ super(HttpError, self).__init__(message)
+ self.code = code
-class HttpErrorConnClosed(HttpError): pass
+class HttpErrorConnClosed(HttpError):
+ pass
def _is_valid_port(port):