Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/10se1ucgo/DisableWinTracking.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author10se1ucgo <hammaadu1@gmail.com>2015-10-03 03:49:16 +0300
committer10se1ucgo <hammaadu1@gmail.com>2015-10-03 03:49:16 +0300
commita4c024ed39a10931f6d397382dd4c5e2d9c174b8 (patch)
treec2cbf064802c5cb3eb7f4622c0095511e2eb1eb1
parente54521aafdb8167e5ba80a86f333240c003418c1 (diff)
Version number bump
-rw-r--r--run.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/run.py b/run.py
index f2f8d3f..f9b981f 100644
--- a/run.py
+++ b/run.py
@@ -438,7 +438,7 @@ def blockips(iplist, undo):
for ip in iplist:
subprocess.call("netsh advfirewall firewall add rule name=""TrackingIP{0}"" dir=out"
" protocol=any remoteip=""{0}"" profile=any action=block".format(ip), shell=True)
- print "IP Blocking: {0} succesfully blocked.".format(ip)
+ print "IP Blocking: {0} successfully blocked.".format(ip)
except (WindowsError, IOError):
logging.exception("IP Blocking: One or more were unable to be blocked.")
print "IP Blocking: One or more were unable to be blocked."
@@ -447,7 +447,7 @@ def blockips(iplist, undo):
try:
for ip in iplist:
subprocess.call("netsh advfirewall firewall delete rule name=""TrackingIP{0}""".format(ip), shell=True)
- print "IP Blocking: {0} succesfully unblocked.".format(ip)
+ print "IP Blocking: {0} successfully unblocked.".format(ip)
except (WindowsError, IOError):
logging.exception("IP Blocking: One or more were unable to be unblocked.")
print "IP Blocking: One or more were unable to be unblocked."
@@ -463,7 +463,7 @@ def cleardiagtracklog():
subprocess.call("takeown /f {0} && icacls {0} /grant administrators:F".format(logfile), shell=True)
open(logfile, 'w').close() # Clear the AutoLogger file
subprocess.call("echo y|cacls {0} /d SYSTEM".format(logfile), shell=True) # Prevent modification to file
- print "DiagTrack Log: Succesfully cleared and locked."
+ print "DiagTrack Log: successfully cleared and locked."
except (WindowsError, IOError):
logging.exception("DiagTrack Log: Unable to clear/lock.")
print "DiagTrack Log: Unable to clear/lock"
@@ -564,7 +564,7 @@ def modifyonedrive(installerfunc, filesyncval):
try:
subprocess.call("{0} /{1}".format(onedrivesetup, installerfunc), shell=True)
- print "OneDrive: Succesfully {0}ed.".format(installerfunc)
+ print "OneDrive: successfully {0}ed.".format(installerfunc)
except (WindowsError, IOError):
logging.exception("OneDrive: Unable to {0}.".format(installerfunc))
print "OneDrive: Unable to {0}.".format(installerfunc)
@@ -609,7 +609,7 @@ def modifyhostfile(undo, domainlist, name):
try:
with open(hostspath, 'ab') as f:
f.write('\r\n' + '\r\n'.join(nulledlist))
- print "{0}: Domains succesfully appended.".format(name)
+ print "{0}: Domains successfully appended.".format(name)
except (WindowsError, IOError):
logging.exception("{0}: Could not append domains".format(name))
print "{0}: Could not append domains".format(name)