diff options
Diffstat (limited to 'src/backend/installpkg.py')
-rw-r--r-- | src/backend/installpkg.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/installpkg.py b/src/backend/installpkg.py index 1e2f51e..1a27051 100644 --- a/src/backend/installpkg.py +++ b/src/backend/installpkg.py @@ -12,7 +12,7 @@ import sisyphus.getenv import sisyphus.getfs import sisyphus.killemerge import sisyphus.solvedeps -import sisyphus.syncDatabase +import sisyphus.syncdb import sisyphus.updateAll def cliExec(pkgname): @@ -45,7 +45,7 @@ def cliExec(pkgname): portageExec = subprocess.Popen(['emerge', '--quiet', '--verbose', '--usepkg', '--usepkgonly', '--rebuilt-binaries', '--with-bdeps=y', '--misspell-suggestion=n', '--fuzzy-search=n'] + list(pkgname), stdout=subprocess.PIPE, stderr=subprocess.PIPE) portageExec.wait() - sisyphus.syncDatabase.localTable() + sisyphus.syncdb.localTable() else: sys.exit("\n" + "Ok; Quitting." + "\n") else: @@ -86,4 +86,4 @@ def guiExec(pkgname): print(portageOutput.rstrip()) portageExec.wait() - sisyphus.syncDatabase.localTable() + sisyphus.syncdb.localTable() |