Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Silbe <sascha-org-sugar-git@silbe.org>2010-03-24 11:10:50 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2010-05-15 12:46:03 (GMT)
commita388ecfea10b153b6b274c2dee055db46d013e52 (patch)
treef850278aa7949ceb1efcd1c5888d4006c11a216a
parentcce927e376fcb7c2f61db270e53888a2713d3b94 (diff)
fix broken log statement in OlpcMeshManager._activate_connection() (#1890)
-rw-r--r--src/jarabe/model/olpcmesh.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jarabe/model/olpcmesh.py b/src/jarabe/model/olpcmesh.py
index cbd7ddd..7215d53 100644
--- a/src/jarabe/model/olpcmesh.py
+++ b/src/jarabe/model/olpcmesh.py
@@ -170,8 +170,8 @@ class OlpcMeshManager(object):
logging.error('Failed to activate connection: %s', err)
def _activate_connection(self, channel, anycast_address=None):
- logging.debug("activate channel %d anycast %s",
- (channel, repr(anycast_address)))
+ logging.debug("activate channel %d anycast %r",
+ channel, anycast_address)
proxy = self._bus.get_object(_NM_SERVICE, _NM_PATH)
network_manager = dbus.Interface(proxy, _NM_IFACE)
connection = self._make_connection(channel, anycast_address)