From 9150cf23d1d0d8b14e7fc1dc6c1fc6b8398d0fcd Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sun, 30 Aug 2009 00:58:15 +0200 Subject: [PATCH] Improve error message --- www/maposmatic/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/maposmatic/views.py b/www/maposmatic/views.py index 5e57533b..d7723260 100644 --- a/www/maposmatic/views.py +++ b/www/maposmatic/views.py @@ -51,7 +51,7 @@ class MapRenderingJobForm(ModelForm): self._errors["administrative_city"] = ErrorList([msg]) del cleaned_data["administrative_city"] elif not city_exists(city): - msg = u"City doesn't exist. Try with proper casing." + msg = u"No administrative boundaries found for this city. Try with proper casing." self._errors["administrative_city"] = ErrorList([msg]) del cleaned_data["administrative_city"]