in windows do not say about missing dbus bidingins
This commit is contained in:
parent
894b012d3d
commit
8ac54a2e41
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
import gobject
|
import gobject
|
||||||
import gtk
|
import gtk
|
||||||
|
import os
|
||||||
|
|
||||||
from common import gajim
|
from common import gajim
|
||||||
from time import time
|
from time import time
|
||||||
|
@ -48,7 +49,7 @@ SERVICE = 'org.gajim.dbus'
|
||||||
class Remote:
|
class Remote:
|
||||||
def __init__(self, plugin):
|
def __init__(self, plugin):
|
||||||
self.signal_object = None
|
self.signal_object = None
|
||||||
if 'dbus' not in globals():
|
if 'dbus' not in globals() and not os.name == 'nt':
|
||||||
print _('D-Bus python bindings are missing in this computer')
|
print _('D-Bus python bindings are missing in this computer')
|
||||||
print _('D-Bus capabilities of Gajim cannot be used')
|
print _('D-Bus capabilities of Gajim cannot be used')
|
||||||
raise DbusNotSupported()
|
raise DbusNotSupported()
|
||||||
|
|
Loading…
Reference in New Issue