Note cull-idle needs python3

- Closes: #1825
This commit is contained in:
Richard Darst
2018-04-26 16:16:49 +03:00
parent 9cd880fb35
commit 6f9ea712de
4 changed files with 7 additions and 7 deletions

View File

@@ -3,6 +3,6 @@ c.JupyterHub.services = [
{
'name': 'cull-idle',
'admin': True,
'command': 'python cull_idle_servers.py --timeout=3600'.split(),
'command': 'python3 cull_idle_servers.py --timeout=3600'.split(),
}
]