summaryrefslogtreecommitdiff
path: root/portato/plugins/dbus_init.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-06-08 02:26:19 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-06-08 02:26:19 +0200
commit9ae32f058d2c9c7781ab6ddd2d78bb412d8a3095 (patch)
treecca99458662a5ff96b6554c1cbb7c03ee598ddce /portato/plugins/dbus_init.py
parentd8c7397b41420892474704dd3fa77eaeb5d23d12 (diff)
downloadportato-9ae32f058d2c9c7781ab6ddd2d78bb412d8a3095.tar.gz
portato-9ae32f058d2c9c7781ab6ddd2d78bb412d8a3095.tar.bz2
portato-9ae32f058d2c9c7781ab6ddd2d78bb412d8a3095.zip
Removed legacy plugins
Diffstat (limited to '')
-rw-r--r--portato/plugins/dbus_init.py10
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()