Skip to content

Commit 3124db0

Browse files
committed
Remove unicoe flag for Python 3.2
1 parent bbc7f25 commit 3124db0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tagging/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class TagField(forms.CharField):
3232
"""
3333
def clean(self, value):
3434
value = super(TagField, self).clean(value)
35-
if value == u'':
35+
if value == '':
3636
return value
3737
for tag_name in parse_tag_input(value):
3838
if len(tag_name) > settings.MAX_TAG_LENGTH:

0 commit comments

Comments
 (0)