Swap the classes order, which for some reason make it work on FC7

This commit is contained in:
Marco Pesenti Gritti 2007-04-10 20:29:34 +02:00
parent a803b00251
commit 3350d5772a

View File

@ -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