Browse Source

Removed clear statement after exit -- lead to confusion when ssh connection abrubtly exited

master
jrtechs 3 years ago
parent
commit
9b2ae42636
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/ssh_manager.py

+ 2
- 2
src/ssh_manager.py View File

@ -41,7 +41,7 @@ def main():
menu.append("C) Socks Tunnel")
menu.append("D) SSH Drive Manager")
module.print_menu("SSH manager V 1.0 ", menu)
module.print_menu("SSH manager V 1.1 ", menu)
i = input("Enter Option:")
@ -139,7 +139,7 @@ def exit_program():
Exits the program and clears the screen
:return: None
"""
subprocess.call(["clear"])
#subprocess.call(["clear"])
exit()

Loading…
Cancel
Save