summaryrefslogtreecommitdiff
path: root/src/backend/uninstallAll.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-25 23:58:10 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-10-25 23:58:10 +0100
commit3a0e9fe9197a931c1f10208d7690b9d72ac42530 (patch)
tree7d7e00d86d4692aaf8ca613fa98cdf222c11b82b /src/backend/uninstallAll.py
parent382526fe605683e67f979e26d48b2889230efb6c (diff)
again : meaningful function names
Diffstat (limited to 'src/backend/uninstallAll.py')
-rw-r--r--src/backend/uninstallAll.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/uninstallAll.py b/src/backend/uninstallAll.py
index 1bf8664..4dfe2cc 100644
--- a/src/backend/uninstallAll.py
+++ b/src/backend/uninstallAll.py
@@ -12,7 +12,7 @@ def start(pkgname):
if sisyphus.checkEnvironment.root():
portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname))
portageExec.wait()
- sisyphus.syncDatabase.syncLocal()
+ sisyphus.syncDatabase.localTable()
else:
sys.exit("\nYou need root permissions to do this, exiting!\n")
@@ -25,4 +25,4 @@ def startqt(pkgname):
print(portageOutput.rstrip())
portageExec.wait()
- sisyphus.syncDatabase.syncLocal()
+ sisyphus.syncDatabase.localTable()