Commit 312dda76 by Calen Pennington

Fixing repr for Locations

parent e0e42ae8
...@@ -131,7 +131,8 @@ class Location(_LocationBase): ...@@ -131,7 +131,8 @@ class Location(_LocationBase):
return self.url() return self.url()
def __repr__(self): def __repr__(self):
return "Location%r" % tuple(self) return "Location%s" % repr(tuple(self))
class ModuleStore(object): class ModuleStore(object):
""" """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment