diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 15:14:09 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 15:14:09 +0000 |
commit | aaf45e0a3c06c7affeae2b412bb8db99e9ce3d86 (patch) | |
tree | fad75c483afa128e43644a9e90387d52e693aaf1 /src/backend/uninstallAll.py | |
parent | fafff14908697a1e1d45cd8db1be2fe5cf8a4153 (diff) |
move syncDatabase -> syncdb
Diffstat (limited to 'src/backend/uninstallAll.py')
-rw-r--r-- | src/backend/uninstallAll.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/uninstallAll.py b/src/backend/uninstallAll.py index c7eea8c..617977f 100644 --- a/src/backend/uninstallAll.py +++ b/src/backend/uninstallAll.py @@ -6,13 +6,13 @@ import subprocess import sys import sisyphus.checkenv import sisyphus.killemerge -import sisyphus.syncDatabase +import sisyphus.syncdb def cliExec(pkgname): if sisyphus.checkenv.root(): portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname)) portageExec.wait() - sisyphus.syncDatabase.localTable() + sisyphus.syncdb.localTable() else: sys.exit("\nYou need root permissions to do this, exiting!\n") @@ -20,7 +20,7 @@ def cliExecForce(pkgname): if sisyphus.checkenv.root(): portageExec = subprocess.Popen(['emerge', '--quiet', '--unmerge', '--ask'] + list(pkgname)) portageExec.wait() - sisyphus.syncDatabase.localTable() + sisyphus.syncdb.localTable() else: sys.exit("\nYou need root permissions to do this, exiting!\n") @@ -33,4 +33,4 @@ def guiExec(pkgname): print(portageOutput.rstrip()) portageExec.wait() - sisyphus.syncDatabase.localTable() + sisyphus.syncdb.localTable() |