whois/parser.py
changeset 165 92d15e20f7bd
parent 164 c89f5d13d9d8
child 168 d994f11c7e9e
equal deleted inserted replaced
164:c89f5d13d9d8 165:92d15e20f7bd
   279         else:
   279         else:
   280             return WhoisEntry(domain, text)
   280             return WhoisEntry(domain, text)
   281 
   281 
   282 
   282 
   283 class WhoisSpace(WhoisEntry):
   283 class WhoisSpace(WhoisEntry):
   284     """Whois parser for .com domains
   284     """Whois parser for .space domains
   285     """
   285     """
   286     def __init__(self, domain, text):
   286     def __init__(self, domain, text):
   287         if 'No match for "' in text:
   287         if 'No match for "' in text:
   288             raise PywhoisError(text)
   288             raise PywhoisError(text)
   289         else:
   289         else: