0
0
mirror of https://github.com/django/django.git synced 2024-11-29 22:56:46 +01:00

Minor cosmetic cleanup for r16347.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16367 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jannis Leidel 2011-06-11 15:11:46 +00:00
parent ce3c281090
commit 7f68d06c98

View File

@ -337,7 +337,7 @@ class BaseTemporalField(Field):
return self.strptime(value, format) return self.strptime(value, format)
except ValueError: except ValueError:
if format.endswith('.%f'): if format.endswith('.%f'):
if not value.count('.')==1: if value.count('.') != 1:
continue continue
try: try:
datetime_str, usecs_str = value.rsplit('.', 1) datetime_str, usecs_str = value.rsplit('.', 1)