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/installpkg.py | |
parent | fafff14908697a1e1d45cd8db1be2fe5cf8a4153 (diff) |
move syncDatabase -> syncdb
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() |