Skip to content
Snippets Groups Projects
Commit 8ac54a2e authored by nkour's avatar nkour
Browse files

in windows do not say about missing dbus bidingins

parent 894b012d
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@
import gobject
import gtk
import os
from common import gajim
from time import time
......@@ -48,7 +49,7 @@ SERVICE = 'org.gajim.dbus'
class Remote:
def __init__(self, plugin):
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 capabilities of Gajim cannot be used')
raise DbusNotSupported()
......
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