fnp
/
edumed.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
curriculum - ordering by unique identifiers
[edumed.git]
/
catalogue
/
publish.py
diff --git
a/catalogue/publish.py
b/catalogue/publish.py
index
89c76a1
..
bc2e37a
100755
(executable)
--- a/
catalogue/publish.py
+++ b/
catalogue/publish.py
@@
-40,7
+40,11
@@
def get_image(src_img_path, width=None, default_width=1600, formats=('PNG', 'JPE
if convert:
if width is None:
width = default_width
if convert:
if width is None:
width = default_width
- return get_thumbnail(src_img_path, '%sx%s' % (width, 10*width))
+ try:
+ return get_thumbnail(src_img_path, '%sx%s' % (width, 10*width))
+ except:
+ # hard to predict what solr raises on invalid image
+ return None
else:
return None
else:
return None