We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97fa52e commit aa9c887Copy full SHA for aa9c887
labkey/utils.py
@@ -49,6 +49,11 @@ def __init__(self, **kwargs):
49
else:
50
self._scheme = 'http://'
51
52
+ def __repr__(self):
53
+ return '<ServerContext [ {} | {} | {} ]>'.format(self._domain,
54
+ self._context_path,
55
+ self._container_path)
56
+
57
def build_url(self, controller, action, container_path=None):
58
# type: (self, str, str, str) -> str
59
sep = '/'
0 commit comments