Compare commits

...

3 commits

Author SHA1 Message Date
+++ 8103f172b5 fix bug in presence handling 2020-07-26 17:34:07 +02:00
+++ 9d471b2c5b minor changes 2020-07-26 17:18:00 +02:00
+++ 2a5588e911 minor changes 2020-07-26 17:15:58 +02:00
3 changed files with 3 additions and 3 deletions

View file

@ -112,7 +112,7 @@ class IdleBot(slixmpp.ClientXMPP):
self.join_room(room) self.join_room(room)
else: else:
if nick in self.room_roster[room]: if nick in self.room_roster[room]:
sel.room_roster[room].remove(nick) self.room_roster[room].remove(nick)
logging.debug('Roster: {}'.format(self.room_roster)) logging.debug('Roster: {}'.format(self.room_roster))
def reconnect(self, event): def reconnect(self, event):

View file

@ -17,7 +17,7 @@ from constants import Const
class Plugin(Plugin): class Plugin(Plugin):
''' '''
Returns the hackbots uptime. The variable birth from the globalvar Returns the hackbots uptime. The constante birth from the constants
module is used to become the starttime. module is used to become the starttime.
''' '''

View file

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# file: generic.plgin # file: wpsearch.py
# date: 23.07.2020 # date: 23.07.2020
# desc: generic plugin # desc: generic plugin