From 6e8d8dabd11e5821d8c34a38803e631c58792c58 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 24 Jul 2024 15:28:03 -0400 Subject: [PATCH] Fix whitespace issue --- confluent_server/confluent/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/confluent/main.py b/confluent_server/confluent/main.py index 9fb27972..b0e3508a 100644 --- a/confluent_server/confluent/main.py +++ b/confluent_server/confluent/main.py @@ -227,7 +227,7 @@ def assure_ownership(path): sys.exit(1) except OSError as e: if e.errno == 13: - if os.getuid() == 0: + if os.getuid() == 0: sys.stderr.write('Attempting to run as root, when non-root usage is detected\n') else: sys.stderr.write('{} is not owned by confluent user, change ownership\n'.format(path))