diff options
Diffstat (limited to 'django/utils/html_parser.py')
| -rw-r--r-- | django/utils/html_parser.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/django/utils/html_parser.py b/django/utils/html_parser.py index 444946151d..858668ca20 100644 --- a/django/utils/html_parser.py +++ b/django/utils/html_parser.py @@ -5,8 +5,7 @@ import sys current_version = sys.version_info use_workaround = ( - (current_version < (2, 6, 8)) or - (current_version >= (2, 7) and current_version < (2, 7, 3)) or + (current_version < (2, 7, 3)) or (current_version >= (3, 0) and current_version < (3, 2, 3)) ) |
