From: Georg Brandl Date: Wed, 3 Oct 2012 20:58:35 +0000 (+0200) Subject: Miscellaneous typo fixes. X-Git-Tag: 1.6~4^2~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b7fd5a4b5626a122cb37af9114306350917d1c3b;p=irker.git Miscellaneous typo fixes. --- diff --git a/irkerd b/irkerd index b394e62..d9e3a0d 100755 --- a/irkerd +++ b/irkerd @@ -382,9 +382,9 @@ class Irker: try: request = json.loads(line.strip()) if not isinstance(request, dict): - self.logerr("request in tot a JSON dictionary: %r" % request) + self.logerr("request is not a JSON dictionary: %r" % request) elif "to" not in request or "privmsg" not in request: - self.logerr("malformed reqest - 'to' or 'privmsg' missing: %r" % request) + self.logerr("malformed request - 'to' or 'privmsg' missing: %r" % request) else: channels = request['to'] message = request['privmsg']