From fde8531a7597b443a5315cfa614f4a6991f1027b Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 22 Sep 2018 10:46:43 +0100 Subject: convert to string --- src/backend/libsisyphus.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/backend/libsisyphus.py b/src/backend/libsisyphus.py index 9512621..6e238f8 100644 --- a/src/backend/libsisyphus.py +++ b/src/backend/libsisyphus.py @@ -220,7 +220,7 @@ def startInstall(pkgList): pkgBins = [] if not len(pkgDeps) == 0: - if input(len(pkgDeps) + "package(s) will be merged, would you like to proceed ?" + " " + str(pkgDeps) + " " + "[y/N]" + " ").lower().strip()[:1] == "y": + if input(str(len(pkgDeps)) + " " + "package(s) will be merged, would you like to proceed ?" + " " + str(pkgDeps) + " " + "[y/N]" + " ").lower().strip()[:1] == "y": for index, url in enumerate([binhostURL + package + '.tbz2' for package in pkgDeps]): print(">>> Fetching" + " " + url) wget.download(url) @@ -260,7 +260,7 @@ def startUpgrade(): worldBins = [] if not len(worldDeps) == 0: - if input(len(worldDeps) + "package(s) will be merged, would you like to proceed ?" + " " + str(worldDeps) + " " + "[y/N]" + " ").lower().strip()[:1] == "y": + if input(str(len(worldDeps)) + " " + "package(s) will be merged, would you like to proceed ?" + " " + str(worldDeps) + " " + "[y/N]" + " ").lower().strip()[:1] == "y": for index, url in enumerate([binhostURL + package + '.tbz2' for package in worldDeps]): print(">>> Fetching" + " " + url) wget.download(url) -- cgit v1.2.3