Ensure that SERVICE_FIX has trailing slash.

Fixes Issue #997. Also updated Traitlets to 4.3.2 since the change in singleuser.py relies on trait default values being checked through validator, which was added in traitlets 4.3.2.
This commit is contained in:
Andrew White
2017-02-27 13:53:23 -05:00
parent b47f76c037
commit 2fb503df17
3 changed files with 13 additions and 2 deletions

View File

@@ -204,7 +204,7 @@ class Service(LoggingConfigurable):
@property
def prefix(self):
return url_path_join(self.base_url, 'services', self.name)
return url_path_join(self.base_url, 'services', self.name + '/')
@property
def proxy_path(self):