remove , which was turning timestamp into tuple

This commit is contained in:
John Park
2017-12-07 11:28:40 -08:00
parent 631ab4d4eb
commit 6d71e9065b

View File

@@ -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,