diff options
Diffstat (limited to 'src/backend/uninstall.py')
-rw-r--r-- | src/backend/uninstall.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/uninstall.py b/src/backend/uninstall.py index de58fa3..4c54d7b 100644 --- a/src/backend/uninstall.py +++ b/src/backend/uninstall.py @@ -15,7 +15,7 @@ def start(pkgname): p_exe = subprocess.Popen( ['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname)) p_exe.wait() - sisyphus.syncdb.localTable() + sisyphus.syncdb.lcl_tbl() else: print(sisyphus.getcolor.bright_red + "\nYou need root permissions to do this!\n" + sisyphus.getcolor.reset) @@ -27,7 +27,7 @@ def fstart(pkgname): p_exe = subprocess.Popen( ['emerge', '--quiet', '--unmerge', '--ask'] + list(pkgname)) p_exe.wait() - sisyphus.syncdb.localTable() + sisyphus.syncdb.lcl_tbl() else: print(sisyphus.getcolor.bright_red + "\nYou need root permissions to do this!\n" + sisyphus.getcolor.reset) @@ -44,4 +44,4 @@ def xstart(pkgname): print(p_out.rstrip()) p_exe.wait() - sisyphus.syncdb.localTable() + sisyphus.syncdb.lcl_tbl() |