Remove surrounding whitespace in registrant data

master
Sven Slootweg 11 years ago
parent 89b981235a
commit 4ebd821395

@ -395,8 +395,7 @@ def parse_registrants(data):
for obj in (registrant, tech_contact, billing_contact, admin_contact): for obj in (registrant, tech_contact, billing_contact, admin_contact):
if obj is not None: if obj is not None:
for key in obj.keys(): for key in obj.keys():
#obj[key] = obj[key].strip("\r") if obj[key] is None or obj[key].strip() == "": # Just chomp all surrounding whitespace
if obj[key] is None or obj[key] == "":
del obj[key] del obj[key]
if "phone_ext" in obj: if "phone_ext" in obj:
if "phone" in obj: if "phone" in obj:

Loading…
Cancel
Save