From 14dda28537079e652c2891a08af11f74acfca545 Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Thu, 2 Nov 2017 22:51:34 +0100 Subject: Fix pep8 warning --- miniircd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miniircd b/miniircd index 51f9747..d79d25d 100755 --- a/miniircd +++ b/miniircd @@ -1043,8 +1043,8 @@ def main(argv): else: op.error("Specify a user, or user and group separated by a colon," " e.g. --setuid daemon, --setuid nobody:nobody") - if os.name == "posix" and \ - (os.getuid() == 0 or os.getgid() == 0) and not options.setuid: + if os.name == "posix" \ + and (os.getuid() == 0 or os.getgid() == 0) and not options.setuid: op.error("Running this service as root is not recommended. Use the" " --setuid option to switch to an unprivileged account after" " startup. If you really intend to run as root, use" -- cgit v1.2.3