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:
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user