From 1cf8eccff0f5f9f8bae504c6068cca2f51503421 Mon Sep 17 00:00:00 2001 From: Sunny Rai Date: Mon, 29 Jun 2026 13:26:55 +0530 Subject: [PATCH] Fix print statement syntax for Python 3 There is was an syntax error in katoolin.py line 8 , missing parentheses . How i get this error : when i ran this repo locally in my terminal it returns with syntax error . --- katoolin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/katoolin.py b/katoolin.py index 71ef3c6..0737486 100644 --- a/katoolin.py +++ b/katoolin.py @@ -5,7 +5,7 @@ if os.getuid() != 0: - print "Sorry. This script requires sudo privledges" + print ("Sorry. This script requires sudo privledges") sys.exit() def main(): try: