Mercurial > moin > 1.9
changeset 2632:584e1714aa05
Fix a missing __init__ argument in ConfigurationError exception.
author | Karol 'grzywacz' Nowak <grzywacz@sul.uni.lodz.pl> |
---|---|
date | Tue, 24 Jul 2007 02:11:32 +0200 |
parents | 80ec0bb44cb2 |
children | f42fb1ae0a38 |
files | jabberbot/xmlrpcbot.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/jabberbot/xmlrpcbot.py Tue Jul 24 02:10:39 2007 +0200 +++ b/jabberbot/xmlrpcbot.py Tue Jul 24 02:11:32 2007 +0200 @@ -16,7 +16,7 @@ class ConfigurationError(Exception): def __init__(self, message): - Exception.__init__() + Exception.__init__(self) self.message = message class XMLRPCClient(Thread):