Skip to content

Commit ccb8ee6

Browse files
fix: correct indentation
- fix adaption of jobs for multi-valued headers in WAT data
1 parent 16e2064 commit ccb8ee6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wat_extract_links.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ def extract_http_header_links(self, url, headers):
165165
if isinstance(headers[header], list):
166166
for cl in headers[header]:
167167
links.append(cl)
168-
else:
169-
links.append(headers[header])
168+
else:
169+
links.append(headers[header])
170170
elif header_name == 'link':
171171
if isinstance(headers[header], list):
172172
for li in headers[header]:

0 commit comments

Comments
 (0)