mirror of
https://github.com/janeczku/calibre-web
synced 2025-06-02 14:34:11 +00:00
use isinstance instead of type
This commit is contained in:
parent
fb41aa8b57
commit
6b4d7674b5
@ -477,7 +477,7 @@ def yesno(value, yes, no):
|
|||||||
@app.template_filter('canread')
|
@app.template_filter('canread')
|
||||||
@app.template_test('canread')
|
@app.template_test('canread')
|
||||||
def canread(ext):
|
def canread(ext):
|
||||||
if type(ext) == db.Data:
|
if isinstance(ext, db.Data):
|
||||||
ext = ext.format
|
ext = ext.format
|
||||||
return ext.lower() in READER_EXTENSIONS
|
return ext.lower() in READER_EXTENSIONS
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user