From: Jan Szejko Date: Thu, 5 Apr 2018 13:37:27 +0000 (+0200) Subject: fix "add cover image" form - missing source url X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/84328b27e3a8d9cf07a1b17790bf99bf4b02be85 fix "add cover image" form - missing source url --- diff --git a/apps/cover/forms.py b/apps/cover/forms.py index 7306b33a..513bdefb 100755 --- a/apps/cover/forms.py +++ b/apps/cover/forms.py @@ -44,6 +44,7 @@ class ImageAddForm(forms.ModelForm): raise forms.ValidationError(mark_safe( ugettext('Image already in repository' % same_source.first().get_absolute_url()))) + return source_url def clean(self): cleaned_data = super(ImageAddForm, self).clean()