From 37583c3cca6ec9c68d6cfaa5ea16ee799df91668 Mon Sep 17 00:00:00 2001 From: Denis Fomin Date: Tue, 29 Mar 2011 18:26:54 +0400 Subject: [PATCH] Correctly printing error message. Fixes #6850 --- src/gajim-remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gajim-remote.py b/src/gajim-remote.py index 168885768..7ad39f064 100644 --- a/src/gajim-remote.py +++ b/src/gajim-remote.py @@ -52,7 +52,7 @@ try: # test if dbus-x11 is installed bus = dbus.SessionBus() except Exception: - print str(exceptions.DbusNotSupported()) + print _('D-Bus is not present on this machine or python module is missing') sys.exit(1) OBJ_PATH = '/org/gajim/dbus/RemoteObject'