Skip to content

Commit a0c7f1c

Browse files
committed
use https for DEFAULT_URL in distribute_setup.py (#198)
From issue #198, volinthius writes: > distribute_setup.py has obsolete DEFAULT_URL, which I think is related to this > https://mail.python.org/pipermail/distutils-sig/2017-October/031712.html Signed-off-by: Drew Fustini <drew@pdp7.com>
1 parent 353acf8 commit a0c7f1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distribute_setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def quote(arg):
5050
return os.spawnl(os.P_WAIT, sys.executable, *args) == 0
5151

5252
DEFAULT_VERSION = "0.6.45"
53-
DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/"
53+
DEFAULT_URL = "https://pypi.python.org/packages/source/d/distribute/"
5454
SETUPTOOLS_FAKED_VERSION = "0.6c11"
5555

5656
SETUPTOOLS_PKG_INFO = """\

0 commit comments

Comments
 (0)