equal
deleted
inserted
replaced
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: |