summaryrefslogtreecommitdiff
path: root/src/backend/search.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-04-28 15:18:43 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-04-28 15:18:43 +0100
commit81f2b15988e5176e998f6b727ae75db3d823324a (patch)
tree0fa57d505fee03a47274c9b783892e1c49e7a00d /src/backend/search.py
parentc07b06aa7ab944b5fee70d5a37ef60a45ff1c24b (diff)
adjust some wording
Diffstat (limited to 'src/backend/search.py')
-rw-r--r--src/backend/search.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/search.py b/src/backend/search.py
index 0d364a4..22bd4ba 100644
--- a/src/backend/search.py
+++ b/src/backend/search.py
@@ -155,9 +155,9 @@ def srch_rslt(filter, cat, pn, desc, single):
def start(filter, cat, pn, desc, single):
if sisyphus.checkenv.root():
print(sisyphus.getcolor.bright_red +
- "\nSearching as root, database could be updated!\n" + sisyphus.getcolor.reset)
+ "\nSearching as root, database can be updated!\n" + sisyphus.getcolor.reset)
print(sisyphus.getcolor.bright_yellow +
- "Search results would be accurate\n" + sisyphus.getcolor.reset)
+ "Search results will be accurate\n" + sisyphus.getcolor.reset)
while True:
user_input = input(sisyphus.getcolor.bright_white + "Would you like to proceed?" + sisyphus.getcolor.reset + " " +
"[" + sisyphus.getcolor.bright_green + "Yes" + sisyphus.getcolor.reset + "/" + sisyphus.getcolor.bright_red + "No" + sisyphus.getcolor.reset + "]" + " ")
@@ -168,15 +168,15 @@ def start(filter, cat, pn, desc, single):
print(sisyphus.getcolor.bright_red +
"\nSkipping database update, displaying search results!\n" + sisyphus.getcolor.reset)
print(sisyphus.getcolor.bright_yellow +
- "Search results could be inaccurate" + sisyphus.getcolor.reset)
+ "Search results may be inaccurate" + sisyphus.getcolor.reset)
break
else:
continue
else:
print(sisyphus.getcolor.bright_red +
- "\nSearching as user, database couldn't be updated!\n" + sisyphus.getcolor.reset)
+ "\nSearching as user, database cannot be updated!\n" + sisyphus.getcolor.reset)
print(sisyphus.getcolor.bright_yellow +
- "Search results could be inaccurate" + sisyphus.getcolor.reset)
+ "Search results may be inaccurate" + sisyphus.getcolor.reset)
srch_rslt(filter, cat, pn, desc, single)