diff frontends/src/quick_frontend/quick_app.py @ 1339:18cd46a264e9 frontends_multi_profiles

quick frontends, primitivus: fixed listener calls (kwargs where forgotten) + fixed presence listener + renamed updatePresence to onPresenceUpdate for consistency with oter listeners
author Goffi <goffi@goffi.org>
date Tue, 24 Feb 2015 16:52:44 +0100
parents 139263ee85c5
children e31a07a5614d
line wrap: on
line diff
--- a/frontends/src/quick_frontend/quick_app.py	Tue Feb 24 14:40:19 2015 +0100
+++ b/frontends/src/quick_frontend/quick_app.py	Tue Feb 24 16:52:44 2015 +0100
@@ -349,7 +349,7 @@
             profile = kwargs.get("profile")
             for listener, profiles_filter in listeners.iteritems():
                 if profile is None or not profiles_filter or profile in profiles_filter:
-                    listener(*args)
+                    listener(*args, **kwargs)
 
     def check_profile(self, profile):
         """Tell if the profile is currently followed by the application"""