X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/ffc2e047ca6712af8da3e13891b7ea16f184264a..210e62452e0e9f26f3e006c874b66ac44005d492:/apps/catalogue/models/image.py diff --git a/apps/catalogue/models/image.py b/apps/catalogue/models/image.py index 90a6e02a..558f4c1f 100755 --- a/apps/catalogue/models/image.py +++ b/apps/catalogue/models/image.py @@ -69,7 +69,9 @@ class Image(dvcs_models.Document): """Returns own file object. Ignores slug ad mime_type.""" return open(self.image.path) - picture_xml = self.publishable().materialize() + publishable = self.publishable() + assert publishable, _("There is no publishable revision") + picture_xml = publishable.materialize() try: picture = WLPicture.from_string(picture_xml.encode('utf-8'), @@ -82,8 +84,8 @@ class Image(dvcs_models.Document): raise AssertionError(_('Invalid Dublin Core') + ': ' + str(e)) valid_about = self.correct_about() - assert (picture.picture_info.about == valid_about, - _("rdf:about is not") + " " + valid_about) + assert picture.picture_info.about == valid_about, \ + _("rdf:about is not") + " " + valid_about def accessible(self, request): return self.public or request.user.is_authenticated()