Skip to content
Snippets Groups Projects
Commit 760f6db1 authored by Dicson's avatar Dicson
Browse files

roster_tweaks. coding style

parent d0da2249
No related branches found
No related tags found
No related merge requests found
......@@ -110,9 +110,7 @@ class RosterTweaksPlugin(GajimPlugin):
self.pep_dict['activity_text'] = text
self.draw_activity()
accounts = gajim.connections.keys()
for account in accounts:
if gajim.account_is_connected(account):
gajim.interface.roster.send_pep(account, self.pep_dict)
self.send_pep()
ChangeActivityDialog(on_response, self.pep_dict.get('activity', None),
self.pep_dict.get('subactivity', None),
self.pep_dict.get('activity_text', None))
......@@ -123,12 +121,16 @@ class RosterTweaksPlugin(GajimPlugin):
self.pep_dict['mood_text'] = text
self.draw_mood()
accounts = gajim.connections.keys()
for account in accounts:
if gajim.account_is_connected(account):
gajim.interface.roster.send_pep(account, self.pep_dict)
self.send_pep()
ChangeMoodDialog(on_response, self.pep_dict.get('mood', None),
self.pep_dict.get('mood_text', None))
def send_pep(self):
accounts = gajim.connections.keys()
for account in accounts:
if gajim.account_is_connected(account):
gajim.interface.roster.send_pep(account, self.pep_dict)
def draw_activity(self):
"""
Set activity button
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment