diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-06-08 02:26:19 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-06-08 02:26:19 +0200 |
commit | 9ae32f058d2c9c7781ab6ddd2d78bb412d8a3095 (patch) | |
tree | cca99458662a5ff96b6554c1cbb7c03ee598ddce /portato/plugins/dbus_init.py | |
parent | d8c7397b41420892474704dd3fa77eaeb5d23d12 (diff) | |
download | portato-9ae32f058d2c9c7781ab6ddd2d78bb412d8a3095.tar.gz portato-9ae32f058d2c9c7781ab6ddd2d78bb412d8a3095.tar.bz2 portato-9ae32f058d2c9c7781ab6ddd2d78bb412d8a3095.zip |
Removed legacy plugins
Diffstat (limited to 'portato/plugins/dbus_init.py')
-rw-r--r-- | portato/plugins/dbus_init.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/portato/plugins/dbus_init.py b/portato/plugins/dbus_init.py deleted file mode 100644 index 653af31..0000000 --- a/portato/plugins/dbus_init.py +++ /dev/null @@ -1,10 +0,0 @@ -try: - from dbus.mainloop.glib import threads_init -except ImportError: - threads_init = None - -from portato.constants import USE_CATAPULT - -def dbus_init (*args): - if USE_CATAPULT and threads_init is not None: - threads_init() |