fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
locale
[redakcja.git]
/
apps
/
catalogue
/
models
/
image.py
diff --git
a/apps/catalogue/models/image.py
b/apps/catalogue/models/image.py
index
90a6e02
..
797d27d
100755
(executable)
--- 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)
"""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'),
try:
picture = WLPicture.from_string(picture_xml.encode('utf-8'),