mirror of https://github.com/django/django.git
Fixed a broken translation string in the flatpages' forms module.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17249 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
cbe82411cc
commit
0e9b1041d7
|
@ -24,7 +24,7 @@ class FlatpageForm(forms.ModelForm):
|
||||||
for site in sites:
|
for site in sites:
|
||||||
if same_url.filter(sites=site).exists():
|
if same_url.filter(sites=site).exists():
|
||||||
raise forms.ValidationError(
|
raise forms.ValidationError(
|
||||||
_('Flatpage with url %s already exists for site %s'
|
_('Flatpage with url %(url)s already exists for site %(site)s' %
|
||||||
% (url, site)))
|
{'url': url, 'site': site}))
|
||||||
|
|
||||||
return super(FlatpageForm, self).clean()
|
return super(FlatpageForm, self).clean()
|
||||||
|
|
Loading…
Reference in New Issue