From bf695f9492d13ce51dcfdd482efbe85f4c1678cc Mon Sep 17 00:00:00 2001 From: Stalin Date: Wed, 15 Apr 2026 06:18:52 +0530 Subject: [PATCH] Fix make target and escape sequence warnings --- Nex_Tor_IP_changer/NexTOR.py | 2 +- Nex_Tor_IP_changer/nex.py | 8 ++++---- debian/rules | 3 --- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/Nex_Tor_IP_changer/NexTOR.py b/Nex_Tor_IP_changer/NexTOR.py index fcff69e..6a93bb2 100755 --- a/Nex_Tor_IP_changer/NexTOR.py +++ b/Nex_Tor_IP_changer/NexTOR.py @@ -75,7 +75,7 @@ def main(): os.system("clear") # Print banner - print('''\033[1;32;40m \n + print(r''' _ _ _____ | \ | | _____ _|_ _|__ _ __ | \| |/ _ \ \/ / | |/ _ \| '__| diff --git a/Nex_Tor_IP_changer/nex.py b/Nex_Tor_IP_changer/nex.py index 7eea33f..906c0c8 100644 --- a/Nex_Tor_IP_changer/nex.py +++ b/Nex_Tor_IP_changer/nex.py @@ -140,10 +140,10 @@ CookieAuthentication 1 return False # ASCII Art -print('''\033[1;32;40m \n - * * _____ - | \ | | _____ *|* *|*_ *_* - | \| |/ * \ \/ / | |/ * \| '__| +print(r''' + _ _ _____ + | \ | | _____ _|_ _|__ _ __ + | \| |/ _ \ \/ / | |/ _ \| '__| | |\ | __/> < | | (_) | | |_| \_|\___/_/\_\ |_|\___/|_| diff --git a/debian/rules b/debian/rules index be0b913..bb8b46e 100755 --- a/debian/rules +++ b/debian/rules @@ -18,9 +18,6 @@ override_dh_auto_test: override_dh_auto_install: dh_auto_install # Create nextor wrapper script in /usr/bin - $(MAKE) -B --directory=debian install-wrapper - -install-wrapper: mkdir -p debian/nextor/usr/bin echo '#!/usr/bin/python3' > debian/nextor/usr/bin/nextor echo 'from Nex_Tor_IP_changer.NexTOR import main' >> debian/nextor/usr/bin/nextor