diff options
| author | Brett Cannon <brett@python.org> | 2018-04-17 15:19:29 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-04-17 20:56:33 -0400 |
| commit | b98fa241ddbb22507cb63886f697d25f43197cba (patch) | |
| tree | c77c4ae32e46ff4e30bac0c6e11546f4ab2241fd /django | |
| parent | 3619d322098ae3573707adae22cb0c086e948210 (diff) | |
[2.0.x] Fixed #29334 -- Updated pypi.python.org URLs to pypi.org.
Backport of 64b74804c537b12d4cca64f7cb529c0478b4c4d9 from master
Diffstat (limited to 'django')
| -rw-r--r-- | django/db/backends/mysql/base.py | 2 | ||||
| -rw-r--r-- | django/db/models/fields/files.py | 2 | ||||
| -rw-r--r-- | django/dispatch/__init__.py | 2 | ||||
| -rw-r--r-- | django/utils/archive.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/django/db/backends/mysql/base.py b/django/db/backends/mysql/base.py index 7ab3bc8d0d..60d0e12124 100644 --- a/django/db/backends/mysql/base.py +++ b/django/db/backends/mysql/base.py @@ -1,7 +1,7 @@ """ MySQL database backend for Django. -Requires mysqlclient: https://pypi.python.org/pypi/mysqlclient/ +Requires mysqlclient: https://pypi.org/project/mysqlclient/ """ import re diff --git a/django/db/models/fields/files.py b/django/db/models/fields/files.py index d14da97cce..265e03d20a 100644 --- a/django/db/models/fields/files.py +++ b/django/db/models/fields/files.py @@ -374,7 +374,7 @@ class ImageField(FileField): return [ checks.Error( 'Cannot use ImageField because Pillow is not installed.', - hint=('Get Pillow at https://pypi.python.org/pypi/Pillow ' + hint=('Get Pillow at https://pypi.org/project/Pillow/ ' 'or run command "pip install Pillow".'), obj=self, id='fields.E210', diff --git a/django/dispatch/__init__.py b/django/dispatch/__init__.py index be3baa30e1..a615f9905a 100644 --- a/django/dispatch/__init__.py +++ b/django/dispatch/__init__.py @@ -1,6 +1,6 @@ """Multi-consumer multi-producer dispatching mechanism -Originally based on pydispatch (BSD) http://pypi.python.org/pypi/PyDispatcher/2.0.1 +Originally based on pydispatch (BSD) https://pypi.org/project/PyDispatcher/2.0.1/ See license.txt for original license. Heavily modified for Django's purposes. diff --git a/django/utils/archive.py b/django/utils/archive.py index 879f3c49f7..5b9998f89c 100644 --- a/django/utils/archive.py +++ b/django/utils/archive.py @@ -1,5 +1,5 @@ """ -Based on "python-archive" -- http://pypi.python.org/pypi/python-archive/ +Based on "python-archive" -- https://pypi.org/project/python-archive/ Copyright (c) 2010 Gary Wilson Jr. <gary.wilson@gmail.com> and contributors. |
