summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-09-22 10:39:02 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-09-22 10:39:02 +0100
commit85186c2ec3dc448972fb9cd21312a89e49853004 (patch)
tree83d23665863504435bcbe6baf80bcfce2f5b7f6f
parent56fd7b8d1bc6d7c2d9feadda17fd044054f15aaa (diff)
fix typo
-rw-r--r--src/backend/libsisyphus.py2
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)