diff -r 565c0268bc39 -r f8c4b2f6355b whois/parser.py --- a/whois/parser.py Thu Nov 30 10:54:42 2017 +0100 +++ b/whois/parser.py Thu Nov 30 11:00:43 2017 +0100 @@ -1292,7 +1292,7 @@ } def __init__(self, domain, text): - if 'No entries found' in text: + if 'NOT FOUND' in text: raise PywhoisError(text) else: WhoisEntry.__init__(self, domain, text, self.regex)