X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ef03d00cada0de76d1e97aa362237923243bb71e..b0b9c1f0f9f4cc0f5c4d00d913735ab6a81bf214:/src/opds/views.py diff --git a/src/opds/views.py b/src/opds/views.py index adfd0730c..004ee5b7d 100644 --- a/src/opds/views.py +++ b/src/opds/views.py @@ -79,13 +79,13 @@ class OPDSFeed(Atom1Feed): _book_parent_img = lazy(lambda: full_url(os.path.join(settings.STATIC_URL, "img/book-parent.png")), str)() try: _book_parent_img_size = unicode(os.path.getsize(os.path.join(settings.STATIC_ROOT, "img/book-parent.png"))) - except IOError: + except OSError: _book_parent_img_size = '' _book_img = lazy(lambda: full_url(os.path.join(settings.STATIC_URL, "img/book.png")), str)() try: _book_img_size = unicode(os.path.getsize(os.path.join(settings.STATIC_ROOT, "img/book.png"))) - except IOError: + except OSError: _book_img_size = '' def add_root_elements(self, handler):