Disabled the wrong Pylint code

This commit is contained in:
Pedro Algarvio 2013-12-24 16:32:00 +00:00
parent 41fe275443
commit e7dd2ca653

View File

@ -47,7 +47,7 @@ def __virtual__():
class SendMsgBot(sleekxmpp.ClientXMPP):
def __init__(self, jid, password, recipient, msg): # pylint: disable=E1003
def __init__(self, jid, password, recipient, msg): # pylint: disable=E1002
# PyLint wrongly reports an error when calling super, hence the above
# disable call
super(SendMsgBot, self).__init__(jid, password)