diff options
| author | Andrew Godwin <andrew@aeracode.org> | 2012-10-31 10:58:14 +0000 |
|---|---|---|
| committer | Andrew Godwin <andrew@aeracode.org> | 2012-10-31 10:58:14 +0000 |
| commit | 7f75460fd6befbef805fee3c91608efb0e9f444d (patch) | |
| tree | b72753803d3146bf3355d4d75a0966d26947f7f2 /django/utils/html.py | |
| parent | 146ed13a111c97c1c04902a6c0eda1e4ee6e604c (diff) | |
Fixed #19070 -- urlize filter no longer raises exceptions on 2.7
Thanks to claudep for the patch.
Diffstat (limited to 'django/utils/html.py')
| -rw-r--r-- | django/utils/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/html.py b/django/utils/html.py index cc8372906b..9816b9accb 100644 --- a/django/utils/html.py +++ b/django/utils/html.py @@ -18,7 +18,7 @@ from django.utils.text import normalize_newlines # Configuration for urlize() function. TRAILING_PUNCTUATION = ['.', ',', ':', ';', '.)'] -WRAPPING_PUNCTUATION = [('(', ')'), ('<', '>'), ('<', '>')] +WRAPPING_PUNCTUATION = [('(', ')'), ('<', '>'), ('[', ']'), ('<', '>')] # List of possible strings used for bullets in bulleted lists. DOTS = ['·', '*', '\u2022', '•', '•', '•'] |
