--- a/_exceptions.py Tue Mar 16 12:34:29 2010 +0100
+++ b/_exceptions.py Tue Mar 16 12:40:59 2010 +0100
@@ -49,7 +49,11 @@
class AuthenticationError(ConnectionError):
"""raised when a bad connection id is given or when an attempt to establish
- a connection failed"""
+ a connection failed
+ """
+ def __init__(self, *args, **kwargs):
+ super(AuthenticationError, self).__init__(*args)
+ self.__dict__.update(kwargs)
class BadConnectionId(ConnectionError):
"""raised when a bad connection id is given or when an attempt to establish