You will find only what you bring in.
[redakcja.git] / src / catalogue / forms.py
index ea6a4ae..e61a1b7 100644 (file)
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
 # This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
 #
@@ -143,7 +141,7 @@ class BookForm(forms.ModelForm):
         orig_instance = Book.objects.get(pk=self.instance.pk)
         old_gallery = orig_instance.gallery
         new_gallery = self.cleaned_data['gallery']
-        if new_gallery != old_gallery:
+        if new_gallery and old_gallery and new_gallery != old_gallery:
             import shutil
             import os.path
             from django.conf import settings