whois/parser.py
changeset 172 68c0b9f2064f
parent 171 518764c4438c
child 173 03eaf09581eb
equal deleted inserted replaced
171:518764c4438c 172:68c0b9f2064f
   274             return WhoisIe(domain, text)
   274             return WhoisIe(domain, text)
   275         elif domain.endswith('.nz'):
   275         elif domain.endswith('.nz'):
   276             return WhoisNz(domain, text)
   276             return WhoisNz(domain, text)
   277         elif domain.endswith('.space'):
   277         elif domain.endswith('.space'):
   278             return WhoisSpace(domain, text)
   278             return WhoisSpace(domain, text)
   279         elif domain.endwith('.lu'):
   279         elif domain.endswith('.lu'):
   280             return WhoisLu(domain, text)
   280             return WhoisLu(domain, text)
   281         else:
   281         else:
   282             return WhoisEntry(domain, text)
   282             return WhoisEntry(domain, text)
   283 
   283 
   284 
   284