Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-04-10 19:12:33 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-04-10 19:12:33 (GMT)
commitf134efbb6f4bdecf78aedc8a15fdd1ff5177a7e7 (patch)
tree14aa140369512f86fc097c9a26f9b3a1f16cfa10 /services
parent8d4d87a081f8b211520a5123fc91d2813bc4b8b3 (diff)
Swap class order here too, to fix FC7
Diffstat (limited to 'services')
-rw-r--r--services/presence/activity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/presence/activity.py b/services/presence/activity.py
index 7711daf..42fed01 100644
--- a/services/presence/activity.py
+++ b/services/presence/activity.py
@@ -24,7 +24,7 @@ from telepathy.interfaces import (CHANNEL_INTERFACE)
_ACTIVITY_PATH = "/org/laptop/Sugar/Presence/Activities/"
_ACTIVITY_INTERFACE = "org.laptop.Sugar.Presence.Activity"
-class DBusGObjectMetaclass(gobject.GObjectMeta, dbus.service.InterfaceType): pass
+class DBusGObjectMetaclass(dbus.service.InterfaceType, gobject.GObjectMeta): pass
class DBusGObject(dbus.service.Object, gobject.GObject): __metaclass__ = DBusGObjectMetaclass