File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -286,10 +286,6 @@ def get_meeting_registration_data(meeting):
286286 username = address ,
287287 email = address ,
288288 )
289- if user .first_name != first_name :
290- debug .say ("Truncated first name: %s --> %s" % (first_name , user .first_name ))
291- if user .last_name != last_name :
292- debug .say ("Truncated last name: %s --> %s" % (last_name , user .last_name ))
293289
294290 aliases = Alias .objects .filter (name = regname )
295291 if aliases .exists ():
@@ -307,8 +303,6 @@ def get_meeting_registration_data(meeting):
307303 email = Email .objects .get (person = person , address = address [:64 ])
308304 except Email .DoesNotExist :
309305 email = Email .objects .create (person = person , address = address [:64 ], origin = 'registration: ietf-%s' % meeting .number )
310- if email .address != address :
311- debug .say ("Truncated address: %s --> %s" % (address , email .address ))
312306
313307 # If this is the only email address, set primary to true.
314308 # If the person already existed (found through Alias) and
You can’t perform that action at this time.
0 commit comments