diff options
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/libsisyphus.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/libsisyphus.py b/src/backend/libsisyphus.py index 87f1b8d..9512621 100644 --- a/src/backend/libsisyphus.py +++ b/src/backend/libsisyphus.py @@ -260,7 +260,7 @@ def startUpgrade(): worldBins = [] if not len(worldDeps) == 0: - if input(len(pkgDeps) + "package(s) will be merged, would you like to proceed ?" + " " + str(worldDeps) + " " + "[y/N]" + " ").lower().strip()[:1] == "y": + if input(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) |