Skip to content

Commit

Permalink
azure_tenant bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechromancer committed Sep 12, 2023
1 parent c84d50d commit bb250eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bbot/modules/azure_tenant.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ async def query(self, domain):
status_code = getattr(r, "status_code", 0)
if status_code not in (200, 421):
self.verbose(f'Error retrieving azure_tenant domains for "{domain}" (status code: {status_code})')
return set(), set()
return set(), dict()
found_domains = list(set(self.d_xml_regex.findall(r.text)))
domains = set()

Expand Down

0 comments on commit bb250eb

Please sign in to comment.