diff options
| author | Tim Graham <timograham@gmail.com> | 2016-05-08 18:07:43 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-05-08 18:09:10 -0400 |
| commit | 145572adb386dc05bc1302bee4432648b13e7e66 (patch) | |
| tree | c16ab4d1b735d95ab51a845202330f268e7158f8 /django/template | |
| parent | 86b346435a6735484c23fc9c798cf5243cbf8124 (diff) | |
[1.9.x] Fixed #26483 -- Updated docs.python.org links to use Intersphinx.
Backport of f5ff5010cd74500785a707ac70b51d292403cddc from master
Diffstat (limited to 'django/template')
| -rw-r--r-- | django/template/defaultfilters.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/template/defaultfilters.py b/django/template/defaultfilters.py index eba65e5ed9..dc7ba32e8e 100644 --- a/django/template/defaultfilters.py +++ b/django/template/defaultfilters.py @@ -246,8 +246,8 @@ def stringformat(value, arg): This specifier uses Python string formating syntax, with the exception that the leading "%" is dropped. - See http://docs.python.org/lib/typesseq-strings.html for documentation - of Python string formatting + See https://docs.python.org/3/library/stdtypes.html#printf-style-string-formatting + for documentation of Python string formatting. """ try: return ("%" + six.text_type(arg)) % value |
