Skip to content
Snippets Groups Projects
Commit cf2675d7 authored by Don Mitchell's avatar Don Mitchell
Browse files

Update fields.py

When changing variable names for code review critique, accidental cut/paste prevented intended behavior.
parent b151d6c1
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ class Date(ModelType):
# however, we don't want dateutil to default the month or day (but some tests at least expect
# us to default year); so, we'll see if dateutil uses the defaults for these the hard way
result = dateutil.parser.parse(field, default=self.PREVENT_DEFAULT_DAY_MON_SEED1)
result_other = dateutil.parser.parse(field, default=self.PREVENT_DEFAULT_DAY_MON_SEED1)
result_other = dateutil.parser.parse(field, default=self.PREVENT_DEFAULT_DAY_MON_SEED2)
if result != result_other:
log.warning("Field {0} is missing month or day".format(self._name, field))
return None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment