Fixing repr for Locations

This commit is contained in:
Calen Pennington
2012-07-02 10:25:25 -04:00
parent e0e42ae8ac
commit 312dda760e

View File

@@ -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):
"""