Skip to content
Snippets Groups Projects
Commit ff8ba1f5 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

print error message instead of raising a TB when Dbus is not present and we...

print error message instead of raising a TB when Dbus is not present and we try to use gajim-remote. Fixes #2539
parent 78f27533
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,8 @@ try:
import dbus.service
import dbus.glib
except:
raise exceptions.DbusNotSupported
print str(exceptions.DbusNotSupported())
sys.exit(1)
OBJ_PATH = '/org/gajim/dbus/RemoteObject'
INTERFACE = 'org.gajim.dbus.RemoteInterface'
......
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