From a3b81d5f0cb9eccb88ce08936db24564a7ee2e88 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Wed, 09 Aug 2006 19:49:50 +0000 Subject: Fix log message args --- (limited to 'shell') diff --git a/shell/PresenceService/PresenceService.py b/shell/PresenceService/PresenceService.py index 42ca409..e1851ab 100644 --- a/shell/PresenceService/PresenceService.py +++ b/shell/PresenceService/PresenceService.py @@ -567,8 +567,8 @@ class PresenceService(object): browser_obj = dbus.Interface(self._system_bus.get_object(avahi.DBUS_NAME, st_browser), avahi.DBUS_INTERFACE_SERVICE_TYPE_BROWSER) except dbus.DBusException, exc: - logging.error("got exception %s while attempting to browse domain %s on %i.%i" % (domain, interface, protocol)) str_exc = str(exc) + logging.error("got exception %s while attempting to browse domain %s on %i.%i" % (str_exc, domain, interface, protocol)) if str_exc.find("The name org.freedesktop.Avahi was not provided by any .service files") >= 0: raise Exception("Avahi does not appear to be running. '%s'" % str_exc) else: -- cgit v0.9.1