summaryrefslogtreecommitdiff
path: root/src/backend/installbinary.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/installbinary.py')
-rw-r--r--src/backend/installbinary.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/installbinary.py b/src/backend/installbinary.py
index d762ef9..9658bf9 100644
--- a/src/backend/installbinary.py
+++ b/src/backend/installbinary.py
@@ -24,7 +24,7 @@ def start(pkgname):
if len(areSources) == 0:
if not len(areBinaries) == 0:
os.chdir(sisyphus.filesystem.portageCacheDir)
- print("\n" + "These are the binary packages that would be merged, in order:" + "\n\n" + str(areBinaries) + "\n\n" + "Total:" + " " + str(len(areBinaries)) + " " + "binary package(s)" + "\n")
+ print("\n" + "These are the binary packages that would be merged, in order:" + "\n\n" + " ".join(areBinaries) + "\n\n" + "Total:" + " " + str(len(areBinaries)) + " " + "binary package(s)" + "\n")
if input("Would you like to proceed?" + " " + "[y/N]" + " ").lower().strip()[:1] == "y":
for index, binary in enumerate([package + '.tbz2' for package in areBinaries]):
print(">>> Fetching" + " " + binhostURL + binary)
@@ -60,6 +60,6 @@ def start(pkgname):
else:
sys.exit("\n" + "No package found; Quitting." + "\n")
else:
- sys.exit("\n" + "Source package(s) found in the mix;" + " " + "Use" + " " + "'" + "sisyphus install" + " " + ''.join(pkgname) + " " + "--ebuild" + "'" + ";" + " " + "Quitting." + "\n")
+ sys.exit("\n" + "Source package(s) found in the mix;" + " " + "Use" + " " + "'" + "sisyphus install" + " " + " ".join(pkgname) + " " + "--ebuild" + "'" + ";" + " " + "Quitting." + "\n")
else:
sys.exit("\nYou need root permissions to do this, exiting!\n")