Correctly printing error message. Fixes #6850

This commit is contained in:
Denis Fomin 2011-03-29 18:26:54 +04:00
parent d874030da2
commit 37583c3cca
1 changed files with 1 additions and 1 deletions

View File

@ -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'