Skip to content
Snippets Groups Projects
Commit 312dda76 authored by Calen Pennington's avatar Calen Pennington
Browse files

Fixing repr for Locations

parent e0e42ae8
No related merge requests found
......@@ -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):
"""
......
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