Also grep through html files.

This commit is contained in:
Michael Herzberg 2019-03-27 20:54:35 +00:00
parent 717a35e7c8
commit acf6e95187
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ def handle_extid(conf, extid, csvwriter):
with ZipFile(tarfile) as zf:
for zipentry in zf.infolist():
file_matches = []
if zipentry.filename.endswith(".js"):
if zipentry.filename.endswith(".js") or zipentry.filename.endswith(".html"):
with zf.open(zipentry) as f:
verbatim_lines = []
joined_string_lines = []