Skip to content

Commit

Permalink
corrected timezone error message in form
Browse files Browse the repository at this point in the history
  • Loading branch information
tamarmot committed Dec 8, 2018
1 parent 3e9658c commit 92232ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xgds_sample/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def clean(self):

if min_collection_time or max_collection_time:
if not collection_timezone:
self.add_error('event_timezone',"Time Zone is required for min / max times.")
self.add_error('collection_timezone',"Time Zone is required for min / max times.")
raise forms.ValidationError(
"Time Zone is required for min / max times."
)
Expand Down

0 comments on commit 92232ad

Please sign in to comment.