Skip to content
Snippets Groups Projects
Commit 32fbe272 authored by nkour's avatar nkour
Browse files

clean up logic; prevent a tb in Windoz

parent 01b24875
No related branches found
No related tags found
No related merge requests found
......@@ -32,22 +32,22 @@
try:
import dbus
version = getattr(dbus, 'version', (0, 20, 0))
supported = True
except ImportError:
version = (0, 0, 0)
if version >= (0, 41, 0):
import dbus.service
import dbus.glib # cause dbus 0.35+ doesn't return signal replies without it
supported = True
if 'dbus' not in globals() and not os.name == 'nt':
print _('D-Bus python bindings are missing in this computer')
print _('D-Bus capabilities of Gajim cannot be used')
supported = False
if not os.name == 'nt': # only say that to non Windows users
print _('D-Bus python bindings are missing in this computer')
print _('D-Bus capabilities of Gajim cannot be used')
# dbus 0.23 leads to segfault with threads_init()
if sys.version[:4] >= '2.4' and version[1] < 30:
supported = False
if version >= (0, 41, 0):
import dbus.service
import dbus.glib # cause dbus 0.35+ doesn't return signal replies without it
class SessionBus:
'''A Singleton for the DBus SessionBus'''
def __init__(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment