diff options
Diffstat (limited to 'chimere/forms.py')
| -rw-r--r-- | chimere/forms.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/chimere/forms.py b/chimere/forms.py index 200d2f1..1d403c8 100644 --- a/chimere/forms.py +++ b/chimere/forms.py @@ -154,11 +154,11 @@ class ImporterAdminForm(forms.ModelForm):          if self.cleaned_data.get('importer_type') == 'OSM' and \             not self.cleaned_data.get('filtr'):              raise forms.ValidationError(_(u"For OSM import you must be "\ -                                    u"provide a filter. Select an area and node/way filter.")) +                      u"provide a filter. Select an area and node/way filter."))          if self.cleaned_data.get('importer_type') == 'OSM' and \             not RE_XAPI.match(self.cleaned_data.get('filtr')):              raise forms.ValidationError(_(u"For OSM import you must be "\ -                                    u"provide a filter. Select an area and node/way filter.")) +                      u"provide a filter. Select an area and node/way filter."))          if self.cleaned_data.get('importer_type') == 'SHP' and \             not self.cleaned_data.get('zipped'):              raise forms.ValidationError(_(u"Shapefiles must be provided in a "\  | 
