summaryrefslogtreecommitdiff
path: root/src/backend/branchsetup.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-02-02 01:07:55 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-02-02 01:07:55 +0000
commited3747e4ff721914d1df6b62788a91a1e8b3f741 (patch)
tree25f2987643c99657eb8f7945d1f68c19c9cfa2bf /src/backend/branchsetup.py
parentfb13a317b1468c6070f4c6131a6526ffbf284511 (diff)
* better explain some used terms
* update the help menu and CLI documentation * remove animations from setjobs module (it takes less than a second, so it's pointless) * make some error messages less cryptic && offer help to understand them * don't kill the graphical interface right away if there is a missmatch, display the error, offer help && and then die in 10 seconds
Diffstat (limited to 'src/backend/branchsetup.py')
-rw-r--r--src/backend/branchsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/branchsetup.py b/src/backend/branchsetup.py
index 0a54dd8..8c2a63b 100644
--- a/src/backend/branchsetup.py
+++ b/src/backend/branchsetup.py
@@ -71,12 +71,12 @@ def injectRedcorePortageConfig(branch,remote):
def warnAboutBinaryRepository(branch,remote):
if "master" in branch:
print("\nThe switch to branch" + " " + "'" + branch + "'" + " " + "from remote" + " " + "'" + remote + "'" + " " + "is now complete")
- print("You must pair this branch with the stable binary package repository")
+ print("You must pair this branch with the stable binhost (binary repository)")
print("Hint : Use the odd numbers (1,3,5,7) from 'sisyphus mirror list'")
print("Examples : 'sisyphus mirror set 1' or 'sisyphus mirror set 5'\n")
elif "next" in branch:
print("\nThe switch to branch" + " " + "'" + branch + "'" + " " + "from remote" + " " + "'" + remote + "'" + " " + "is now complete")
- print("You must pair this branch with the testing binary package repository")
+ print("You must pair this branch with the testing binhost (binary repository)")
print("Hint : Use the even numbers (2,4,6,8) from 'sisyphus mirror list'")
print("Examples : 'sisyphus mirror set 4' or 'sisyphus mirror set 8'\n")