Changeset 63cad66
- Timestamp:
- 2015-11-25T02:49:24Z (9 years ago)
- Children:
- 3fbce97
- Parents:
- 7051acb (diff), 365b25a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/wa.py
r7051acb r63cad66 280 280 def onStatusNotification(self, status): 281 281 print "New status for %s: %s" % (status.getFrom(), status.status) 282 self. bee.buddy_status_msg(status.getFrom(), status.status)282 self.cb.buddy_status_msg(status.getFrom(), status.status) 283 283 284 284 def onGroupSubjectNotification(self, sub): … … 493 493 494 494 stack = (YowStackBuilder() 495 .pushDefaultLayers( False)495 .pushDefaultLayers(True) 496 496 .push(BitlBeeLayer) 497 497 .build()) … … 527 527 lines.append(msg.getCaption()) 528 528 text = "\n".join(lines) 529 else: 530 text = "Message of unknown type %r" % type(msg) 529 531 530 532 if msg.getParticipant():
Note: See TracChangeset
for help on using the changeset viewer.