From 312dda760edeff2d68474f6cad895623f07cf6a0 Mon Sep 17 00:00:00 2001 From: Calen Pennington <calen.pennington@gmail.com> Date: Mon, 2 Jul 2012 10:25:25 -0400 Subject: [PATCH] Fixing repr for Locations --- common/lib/keystore/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/lib/keystore/__init__.py b/common/lib/keystore/__init__.py index dab758fef12..0671e7e5686 100644 --- a/common/lib/keystore/__init__.py +++ b/common/lib/keystore/__init__.py @@ -131,7 +131,8 @@ class Location(_LocationBase): return self.url() def __repr__(self): - return "Location%r" % tuple(self) + return "Location%s" % repr(tuple(self)) + class ModuleStore(object): """ -- GitLab