From ec7deec5b851d582f7ada4803033d5044673ecf3 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Thu, 9 Mar 2023 20:10:34 +0000 Subject: remoteTable -> rmt_tbl; localTable -> lcl_tbl; remoteCSV -> rmt_csv; localCSV -> lcl_csv --- src/backend/install.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/backend/install.py') diff --git a/src/backend/install.py b/src/backend/install.py index a9cec1b..f4639eb 100644 --- a/src/backend/install.py +++ b/src/backend/install.py @@ -37,7 +37,7 @@ def start(pkgname): p_exe = subprocess.Popen(['emerge', '--quiet', '--verbose', '--usepkg', '--usepkgonly', '--rebuilt-binaries', '--with-bdeps=y', '--misspell-suggestion=n', '--fuzzy-search=n'] + list(pkgname)) p_exe.wait() - sisyphus.syncdb.localTable() + sisyphus.syncdb.lcl_tbl() break elif user_input.lower() in ['no', 'n']: print(sisyphus.getcolor.bright_green + @@ -92,7 +92,7 @@ def estart(pkgname): p_exe = subprocess.Popen(['emerge', '--quiet', '--verbose', '--usepkg', '--usepkgonly', '--rebuilt-binaries', '--with-bdeps=y', '--misspell-suggestion=n', '--fuzzy-search=n'] + list(pkgname)) p_exe.wait() - sisyphus.syncdb.localTable() + sisyphus.syncdb.lcl_tbl() break elif user_input.lower() in ['no', 'n']: print(sisyphus.getcolor.bright_green + @@ -122,7 +122,7 @@ def estart(pkgname): p_exe = subprocess.Popen(['emerge', '--quiet', '--verbose', '--usepkg', '--rebuilt-binaries', '--with-bdeps=y', '--misspell-suggestion=n', '--fuzzy-search=n'] + list(pkgname)) p_exe.wait() - sisyphus.syncdb.localTable() + sisyphus.syncdb.lcl_tbl() break elif user_input.lower() in ['no', 'n']: print(sisyphus.getcolor.bright_green + @@ -143,7 +143,7 @@ def estart(pkgname): p_exe = subprocess.Popen( ['emerge', '--quiet', '--verbose', '--with-bdeps=y', '--misspell-suggestion=n', '--fuzzy-search=n'] + list(pkgname)) p_exe.wait() - sisyphus.syncdb.localTable() + sisyphus.syncdb.lcl_tbl() break elif user_input.lower() in ['no', 'n']: print(sisyphus.getcolor.bright_green + @@ -187,4 +187,4 @@ def xstart(pkgname): print(p_out.rstrip()) p_exe.wait() - sisyphus.syncdb.localTable() + sisyphus.syncdb.lcl_tbl() -- cgit v1.2.3