Skip to content

Commit 8c83917

Browse files
Merge pull request #289 from timparenti/fields-fix
Fix `updated_date` fields.
2 parents 0413952 + 6ad4b09 commit 8c83917

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

whois/parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3051,7 +3051,7 @@ class WhoisKZ(WhoisEntry):
30513051
"registrar_created": r"Registr?ar Created: *(.+)",
30523052
"registrar": r"Current Registr?ar: *(.+)",
30533053
"creation_date": r"Domain created: *(.+)",
3054-
"last_modified": r"Last modified : *(.+)",
3054+
"updated_date": r"Last modified : *(.+)",
30553055
"name_servers": r"server.*: *(.+)", # list of name servers
30563056
"status": r" (.+?) -", # list of statuses
30573057
"emails": EMAIL_REGEX, # list of email addresses
@@ -3436,7 +3436,7 @@ class WhoisEdu(WhoisEntry):
34363436
regex: dict[str, str] = {
34373437
"domain_name": "Domain name: *(.+)",
34383438
"creation_date": "Domain record activated: *(.+)",
3439-
"lats_modified": "Domain record last updated: *(.+)",
3439+
"updated_date": "Domain record last updated: *(.+)",
34403440
"expiration_date": "Domain expires: *(.+)",
34413441
}
34423442

0 commit comments

Comments
 (0)