Skip to content

Commit d59eb23

Browse files
committed
Updated unicode comparison patch for django 1.11.18
- Legacy-Id: 15907
1 parent 97db43d commit d59eb23

1 file changed

Lines changed: 1 addition & 9 deletions

File tree

patch/fix-django-unicode-comparison-bug.patch

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,7 @@
1111

1212
--- django/forms/widgets.py.old 2018-02-21 15:17:40.742742712 -0800
1313
+++ django/forms/widgets.py 2018-02-21 15:19:57.182002508 -0800
14-
@@ -7,6 +7,7 @@
15-
import copy
16-
import datetime
17-
import re
18-
+import six
19-
from itertools import chain
20-
21-
from django.conf import settings
22-
@@ -195,7 +196,7 @@
14+
@@ -195,7 +195,7 @@
2315
"""
2416
Return a value as it should appear when rendered in a template.
2517
"""

0 commit comments

Comments
 (0)