diff --git a/whois/parser.py b/whois/parser.py index 848e66a..090d977 100644 --- a/whois/parser.py +++ b/whois/parser.py @@ -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)