Code cosmetics
This commit is contained in:
OzzieIsaacs
2017-09-17 07:15:08 +02:00
parent b6f06658a2
commit b6b73d39c2
5 changed files with 42 additions and 80 deletions

View File

@@ -20,7 +20,7 @@ def init_cache_busting(app):
app.logger.debug('Computing cache-busting values...')
# compute file hashes
for dirpath, dirnames, filenames in os.walk(static_folder):
for dirpath, __, filenames in os.walk(static_folder):
for filename in filenames:
# compute version component
rooted_filename = os.path.join(dirpath, filename)