summaryrefslogtreecommitdiff
path: root/src/backend/install.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-03-09 20:10:34 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-03-09 20:10:34 +0000
commitec7deec5b851d582f7ada4803033d5044673ecf3 (patch)
treee1cfb169c7544a9ed27bcfc296160beda1a808c0 /src/backend/install.py
parent3734eb8c40f2481b023fbbe741f646a5087e50e5 (diff)
remoteTable -> rmt_tbl; localTable -> lcl_tbl; remoteCSV -> rmt_csv; localCSV -> lcl_csv
Diffstat (limited to 'src/backend/install.py')
-rw-r--r--src/backend/install.py10
1 files changed, 5 insertions, 5 deletions
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()