Fix issues with Windows path separators

This commit is contained in:
Jonathan Rehm 2017-08-19 08:32:00 -07:00
parent a27848b351
commit 13c2a53c0f
1 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,7 @@ def init_cache_busting(app):
because whenever the resource changes, so does its URL.
"""
static_folder = app.static_folder # the rooted path to the static file folder
static_folder = os.path.join(app.static_folder, '') # path to the static file folder, with trailing slash
hash_table = {} # map of file hashes
@ -28,7 +28,8 @@ def init_cache_busting(app):
version = hashlib.md5(f.read()).hexdigest()[:7]
# save version to tables
file_path = rooted_filename.replace(static_folder + "/", "")
file_path = rooted_filename.replace(static_folder, "")
file_path = file_path.replace("\\", "/") # Convert Windows path to web path
hash_table[file_path] = version
app.logger.debug('Finished computing cache-busting values')