Skip to content

Commit

Permalink
Fix type recieved
Browse files Browse the repository at this point in the history
  • Loading branch information
quozl committed Nov 15, 2019
1 parent 5b55dad commit 575443c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions collabwrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -829,12 +829,12 @@ def _received_cb(self, identity, timestamp, sender, type_, flags, text):
nick = self._conn[
CONN_INTERFACE_ALIASING].RequestAliases([sender])[0]
buddy = {'nick': nick, 'color': '#000000,#808080'}
_logger.debug('exception: recieved from sender %r buddy %r' %
_logger.debug('exception: received from sender %r buddy %r' %
(sender, buddy))
else:
# XXX: cache these
buddy = self._get_buddy(sender)
_logger.debug('Else: recieved from sender %r buddy %r' %
_logger.debug('Else: received from sender %r buddy %r' %
(sender, buddy))

self._activity_cb(buddy, msg)
Expand Down

0 comments on commit 575443c

Please sign in to comment.