Merge pull request #1578 from johnkpark/fix-static-file-caching

remove , which was turning timestamp into tuple
This commit is contained in:
Carol Willing
2017-12-07 19:55:24 -06:00
committed by GitHub

View File

@@ -1308,7 +1308,7 @@ class JupyterHub(Application):
if os.path.isdir(os.path.join(parent, '.git')): if os.path.isdir(os.path.join(parent, '.git')):
version_hash = '' version_hash = ''
else: else:
version_hash = datetime.now().strftime("%Y%m%d%H%M%S"), version_hash = datetime.now().strftime("%Y%m%d%H%M%S")
settings = dict( settings = dict(
log_function=log_request, log_function=log_request,