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-09-26 03:37:38 +0300
committer10se1ucgo <hammaadu1@gmail.com>2015-09-26 03:37:38 +0300
commitc04f2864e2da8ff60c495770b64d98dc463a85ac (patch)
treeaf8d0a777845297ae36022250d04845d53b6d3ad
parent29eaff8d77e5f173e54241972ee21943f3825b2c (diff)
error message
-rw-r--r--run.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/run.py b/run.py
index a7d1b01..011133a 100644
--- a/run.py
+++ b/run.py
@@ -626,7 +626,6 @@ def apppackage(reinstall, applist):
subprocess.call("powershell \"Get-AppxPackage *{0}* | Remove-AppxPackage\"".format(appname), shell=True)
except (WindowsError, IOError):
print "App management: Could not uninstall {0}".format(appname)
- pass
if reinstall:
# We encode in Base64 because the command is complex and I'm too lazy to escape everything.
@@ -639,7 +638,7 @@ def apppackage(reinstall, applist):
try:
subprocess.call("powershell -EncodedCommand {0}".format(encodedcommand), shell=True)
except (WindowsError, IOError):
- pass
+ print "App management: Could not re-install all apps"
if __name__ == '__main__':