Replace python with sys.executable in most service examples

This commit is contained in:
Nils Werner
2018-10-02 09:42:54 +02:00
parent acdd9bb674
commit a08a839385
7 changed files with 7 additions and 7 deletions

View File

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