1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-08-30 17:37:58 +00:00

use isinstance instead of type

This commit is contained in:
Andriy Zasypkin
2018-01-16 09:30:26 -05:00
parent fb41aa8b57
commit 6b4d7674b5

View File

@@ -477,7 +477,7 @@ def yesno(value, yes, no):
@app.template_filter('canread')
@app.template_test('canread')
def canread(ext):
if type(ext) == db.Data:
if isinstance(ext, db.Data):
ext = ext.format
return ext.lower() in READER_EXTENSIONS