Skip to content

Commit

Permalink
Adjust not found text for us domains
Browse files Browse the repository at this point in the history
  • Loading branch information
devnull-mr committed Jan 13, 2025
1 parent 34e0144 commit 01e3b2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whois/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ class WhoisUs(WhoisEntry):
}

def __init__(self, domain, text):
if "Not found:" in text:
if "No Data Found" in text:
raise PywhoisError(text)
else:
WhoisEntry.__init__(self, domain, text, self.regex)
Expand Down

0 comments on commit 01e3b2e

Please sign in to comment.