Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Issue #3506 - Removes useless print statement
  • Loading branch information
karlcow committed Nov 16, 2020
commit 7b328c6f7b5de1ce74caf283ddd1b1f45a17d4e8
2 changes: 0 additions & 2 deletions webcompat/templates/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,11 @@ def bust_cache(file_path):


def get_checksum(file_path):
print('GET_CHECKSUM', cache_dict)
try:
checksum = cache_dict[file_path]
except KeyError:
checksum = md5_checksum(file_path)
cache_dict[str(file_path)] = checksum
print('GET_CHECKSUM (after cache miss)', cache_dict)
return checksum


Expand Down