From 91500d10221963330fcee82f4212264e7475e2e7 Mon Sep 17 00:00:00 2001 From: Zach Seils Date: Tue, 24 Apr 2018 19:53:51 -0400 Subject: [PATCH] Minor comment & stdout corrections (#1225) --- lemur/manage.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lemur/manage.py b/lemur/manage.py index 8f45cfb4..0079adb4 100755 --- a/lemur/manage.py +++ b/lemur/manage.py @@ -208,16 +208,16 @@ class InitializeApp(Command): if operator_role: sys.stdout.write("[-] Operator role already created, skipping...!\n") else: - # we create an admin role + # we create an operator role operator_role = role_service.create('operator', description='This is the Lemur operator role.') sys.stdout.write("[+] Created 'operator' role\n") read_only_role = role_service.get_by_name('read-only') if read_only_role: - sys.stdout.write("[-] Operator role already created, skipping...!\n") + sys.stdout.write("[-] Read only role already created, skipping...!\n") else: - # we create an admin role + # we create an read only role read_only_role = role_service.create('read-only', description='This is the Lemur read only role.') sys.stdout.write("[+] Created 'read-only' role\n")