diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-03-09 20:10:34 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-03-09 20:10:34 +0000 |
commit | ec7deec5b851d582f7ada4803033d5044673ecf3 (patch) | |
tree | e1cfb169c7544a9ed27bcfc296160beda1a808c0 /src/backend/uninstall.py | |
parent | 3734eb8c40f2481b023fbbe741f646a5087e50e5 (diff) |
remoteTable -> rmt_tbl; localTable -> lcl_tbl; remoteCSV -> rmt_csv; localCSV -> lcl_csv
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() |