diff options
Diffstat (limited to 'src/backend/autoRemoveAll.py')
-rw-r--r-- | src/backend/autoRemoveAll.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/autoRemoveAll.py b/src/backend/autoRemoveAll.py index 191c10e..982c7b3 100644 --- a/src/backend/autoRemoveAll.py +++ b/src/backend/autoRemoveAll.py @@ -12,7 +12,7 @@ def start(): if sisyphus.checkEnvironment.root(): portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask']) 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(): print(portageOutput.rstrip()) portageExec.wait() - sisyphus.syncDatabase.syncLocal() + sisyphus.syncDatabase.localTable() |