Skip to content
This repository was archived by the owner on Feb 3, 2024. It is now read-only.

Commit d630753

Browse files
committed
also fix sg and rs : on the wrong place
1 parent 86506f9 commit d630753

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,7 @@
356356
failure = {}
357357
nones = []
358358

359+
359360
def prepItem(d):
360361
print("-" * 80)
361362
print(d)
@@ -463,4 +464,5 @@ def main():
463464
for d in sorted(nones):
464465
print(d)
465466

467+
466468
main()

whois/tld_regexpr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1689,7 +1689,7 @@
16891689
"registrar": r"Registrar:\s+(.+)",
16901690
"status": r"Domain status:\s(.+)",
16911691
"creation_date": r"Registration date:\s+(.+)",
1692-
"expiration_date": r":Expiration date\s+(.+)",
1692+
"expiration_date": r"Expiration date:\s+(.+)",
16931693
"updated_date": r"Modification date:\s+(.+)",
16941694
"name_servers": r"DNS:\s+(.+)",
16951695
"registrant_country": None,
@@ -1701,7 +1701,7 @@
17011701
"registrar": r"Registrar:\s+(.+)",
17021702
"domain_name": r"\s+Domain name:\s+(.+)",
17031703
"creation_date": r"\s+Creation Date:\s+(.+)",
1704-
"expiration_date": r":\s+Expiration Date\s+(.+)",
1704+
"expiration_date": r"\s+Expiration Date:\s+(.+)",
17051705
"updated_date": r"\s+Modified Date:\s+(.+)",
17061706
"status": r"\s+Domain Status:\s(.+)",
17071707
"registrant_country": None,

0 commit comments

Comments
 (0)