mirror of
https://github.com/janeczku/calibre-web
synced 2025-04-06 18:57:00 +00:00
python3 compatibility
This commit is contained in:
parent
2302db4e06
commit
442fb23b18
@ -24,7 +24,7 @@ def init_cache_busting(app):
|
||||
for filename in filenames:
|
||||
# compute version component
|
||||
rooted_filename = os.path.join(dirpath, filename)
|
||||
with open(rooted_filename, 'r') as f:
|
||||
with open(rooted_filename, 'rb') as f:
|
||||
file_hash = hashlib.md5(f.read()).hexdigest()[:7]
|
||||
|
||||
# save version to tables
|
||||
|
Loading…
x
Reference in New Issue
Block a user