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 18:29:34 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-04-10 18:29:34 (GMT)
commit3350d5772abbe8868222b3166733d7b1296d42cb (patch)
treea3dfd76f5e8505e2d8aa5b6db65da2fd18ba16c6 /services
parenta803b00251d35ce375db7c66b7378f940bb06e16 (diff)
Swap the classes order, which for some reason make it work on FC7
Diffstat (limited to 'services')
-rw-r--r--services/presence/buddy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/presence/buddy.py b/services/presence/buddy.py
index 4906b9d..f43bcab 100644
--- a/services/presence/buddy.py
+++ b/services/presence/buddy.py
@@ -31,7 +31,7 @@ class NotFoundError(dbus.DBusException):
dbus.DBusException.__init__(self)
self._dbus_error_name = _PRESENCE_INTERFACE + '.NotFound'
-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