summaryrefslogtreecommitdiff
path: root/portato/plugins/dbus_init.py
diff options
context:
space:
mode:
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()