Reverting commit to previous state to see if the test is only relevant to django 1.5b2

This commit is contained in:
Joel Marcotte 2012-12-15 16:45:04 -05:00
parent 01e06bcdf8
commit 6f25181979

View File

@ -794,7 +794,7 @@ class ChoiceField(WritableField):
if value == smart_unicode(k2):
return True
else:
if value == smart_unicode(k) or value == k:
if value == smart_unicode(k):
return True
return False