Updated toriptables2.py Refactor

This commit is contained in:
Rupert Edwards 2016-01-04 01:56:28 -05:00
parent b33068443a
commit 4d25fbe118
1 changed files with 3 additions and 5 deletions

View File

@ -46,12 +46,10 @@ DNSPort %s
def restart_tor():
fnull = open(devnull, 'w')
try:
tor_restart = check_call(
["service", "tor", "restart"],
stdout=fnull, stderr=fnull)
tor_restart = check_call(["service", "tor", "restart"],
stdout=fnull, stderr=fnull)
if tor_restart is 0:
print(" {0}".format(
"[\033[92m+\033[0m] Anonymizer \033[92mON\033[0m"))
print(" {0}".format("[\033[92m+\033[0m] Anonymizer \033[92mON\033[0m"))
except CalledProcessError as err:
print("\n[!] Command failed: %s" % err.cmd)