summaryrefslogtreecommitdiff
path: root/src/backend/uninstallAll.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/uninstallAll.py')
-rw-r--r--src/backend/uninstallAll.py8
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()