summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTill Maas <opensource@till.name>2013-06-25 23:49:13 +0200
committerTill Maas <opensource@till.name>2013-06-25 23:49:13 +0200
commitc8b461a25d5832521e699fcc4638ef0804850e09 (patch)
treeb2bff1c29ead7d99648de29e97147f3ad4ccd293
parent5f7b2db05a17bf2797c58fbc39f6183d596d0937 (diff)
downloadcnucnu-c8b461a25d5832521e699fcc4638ef0804850e09.tar.gz
cnucnu-c8b461a25d5832521e699fcc4638ef0804850e09.tar.xz
cnucnu-c8b461a25d5832521e699fcc4638ef0804850e09.zip
fix PYPI-DEFAULT url
Reported by Marcin Dulak <marcin.dulak@gmail.com>
-rwxr-xr-xcnucnu/package_list.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cnucnu/package_list.py b/cnucnu/package_list.py
index 637a009..d3cd694 100755
--- a/cnucnu/package_list.py
+++ b/cnucnu/package_list.py
@@ -220,7 +220,7 @@ class Package(object):
elif url == "GOOGLE-DEFAULT":
url = "http://code.google.com/p/%s/downloads/list" % name
elif url == "PYPI-DEFAULT":
- url = "http://pypi.python.org/packages/source/%s/%s" % (name[0], name)
+ url = "https://pypi.python.org/packages/source/%s/%s/" % (name[0], name)
elif url == "PEAR-DEFAULT":
# strip "php-pear-" prefix only if name was not overridden
if not name_override and name.startswith("php-pear-"):