diff options
Diffstat (limited to 'src/backend/autoremove.py')
-rw-r--r-- | src/backend/autoremove.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/autoremove.py b/src/backend/autoremove.py index 139c850..3dc717d 100644 --- a/src/backend/autoremove.py +++ b/src/backend/autoremove.py @@ -6,13 +6,13 @@ import subprocess import sys import sisyphus.checkenv import sisyphus.killemerge -import sisyphus.syncDatabase +import sisyphus.syncdb def start(): if sisyphus.checkenv.root(): portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask']) portageExec.wait() - sisyphus.syncDatabase.localTable() + sisyphus.syncdb.localTable() else: sys.exit("\nYou need root permissions to do this, exiting!\n") @@ -25,4 +25,4 @@ def startx(): print(portageOutput.rstrip()) portageExec.wait() - sisyphus.syncDatabase.localTable() + sisyphus.syncdb.localTable() |