Skip to content

Commit

Permalink
Update parser.py
Browse files Browse the repository at this point in the history
richardpenman authored Jan 14, 2025
1 parent 1010e7b commit 7f62cba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions whois/parser.py
Original file line number Diff line number Diff line change
@@ -393,7 +393,7 @@ def load(domain, text):
elif domain.endswith(".lv"):
return WhoisLv(domain, text)
elif domain.endswith(".co"):
return WhoisCo(domain,text)
return WhoisCo(domain, text)
else:
return WhoisEntry(domain, text)

@@ -3439,4 +3439,4 @@ def __init__(self, domain, text):
if "No Data Found" in text:
raise PywhoisError(text)
else:
WhoisEntry.__init__(self, domain, text, self.regex)
WhoisEntry.__init__(self, domain, text, self.regex)

0 comments on commit 7f62cba

Please sign in to comment.