Apply byte->str conversion to recursive call

This commit is contained in:
bonnland 2022-04-14 14:01:39 -06:00
parent 09fbc27054
commit 4fd2420e05
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ def _extract_waf(content, base_url, scraper, results = None, depth=0):
except Exception as e:
print(six.text_type(e))
continue
_extract_waf(content, new_url, scraper, results, new_depth)
_extract_waf(six.text_type(content), new_url, scraper, results, new_depth)
continue
if not url.endswith('.xml'):
continue