s/parseargs/parse_args

This commit is contained in:
Christophe Benz 2010-12-13 15:42:20 +01:00
commit 5bdd1540fe
9 changed files with 11 additions and 11 deletions

View file

@ -62,7 +62,7 @@ class Chatoob(ReplApplication):
Send a message to the specified contact.
"""
_id, message = self.parseargs(line, 2, 2)
_id, message = self.parse_args(line, 2, 2)
for backend, result in self.do('send_chat_message', _id, message):
if not result:
logging.error(u'Failed to send message to contact id="%s" on backend "%s"' % (_id, backend.name))