mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-17 23:13:00 +00:00
Merge pull request #1578 from johnkpark/fix-static-file-caching
remove , which was turning timestamp into tuple
This commit is contained in:
@@ -1308,7 +1308,7 @@ class JupyterHub(Application):
|
||||
if os.path.isdir(os.path.join(parent, '.git')):
|
||||
version_hash = ''
|
||||
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(
|
||||
log_function=log_request,
|
||||
|
Reference in New Issue
Block a user