From 22ec0db34c9c53a176a8097e1d8bcebf017247a1 Mon Sep 17 00:00:00 2001 From: George Joseph Hamilton Date: Tue, 7 Jan 2020 23:52:35 -0500 Subject: [PATCH] Fix Typo (#489) Fix newline typo that used the wrong slash --- Defs/Checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Defs/Checks.py b/Defs/Checks.py index df275f7..d1c6758 100644 --- a/Defs/Checks.py +++ b/Defs/Checks.py @@ -89,7 +89,7 @@ def checkOpenportinstall(): # Check If installed properly if 256 == system('which openport > /dev/null'): print('[*] Openport not Installed correctly, Try installing it manually !!') print('[*] Check Here ... https://openport.io/download') - input('/n Press Enter To Continue') + input('\n Press Enter To Continue') else: print('[*] Openport Installation Success !!') sleep(1)