From 1364305fee46f586a2bc9b3183db7377860aef21 Mon Sep 17 00:00:00 2001 From: Bastian Greshake Tzovaras Date: Thu, 19 Jul 2018 16:04:16 -0700 Subject: [PATCH] fix typo in installer --- tljh/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tljh/installer.py b/tljh/installer.py index 523d73f..0a0c3cb 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -88,7 +88,7 @@ def ensure_usergroups(): user.ensure_group('jupyterhub-admins') user.ensure_group('jupyterhub-users') - print("Grainting passwordless sudo to JupyterHub admins...") + print("Granting passwordless sudo to JupyterHub admins...") with open('/etc/sudoers.d/jupyterhub-admins', 'w') as f: # JupyterHub admins should have full passwordless sudo access f.write('%jupyterhub-admins ALL = (ALL) NOPASSWD: ALL\n')