Check library did not know about original_* files

This commit is contained in:
Kovid Goyal 2011-07-29 21:58:15 -06:00
parent b32c1158b0
commit 48641b7c6c

View File

@ -150,6 +150,8 @@ class CheckLibrary(object):
if not ext:
return False
ext = ext[1:].lower()
if ext.startswith('original_'):
ext = ext[len('original_'):]
if ext in EBOOK_EXTENSIONS:
return True
return False