X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/357027375ff8867f42ca34bcbfb5a78b5b185fc3..3ba4d1e44766528f0f5b99a825243dd976a7f03c:/src/picture/forms.py?ds=sidebyside

diff --git a/src/picture/forms.py b/src/picture/forms.py
index 2ad47b0b8..14706d9da 100644
--- a/src/picture/forms.py
+++ b/src/picture/forms.py
@@ -35,5 +35,6 @@ class PictureImportForm(forms.Form):
         return super(PictureImportForm, self).clean()
 
     def save(self, commit=True, **kwargs):
-        return Picture.from_xml_file(self.cleaned_data['picture_xml_file'], image_file=self.cleaned_data['picture_image_file'],
-                                     overwrite=True, **kwargs)
+        return Picture.from_xml_file(
+            self.cleaned_data['picture_xml_file'], image_file=self.cleaned_data['picture_image_file'],
+            overwrite=True, **kwargs)