Skip to content

Commit 26535bf

Browse files
committed
Took out some debug statements for a seldomly occurring condition (that now seem to be OBE)
- Legacy-Id: 15723
1 parent eeba500 commit 26535bf

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

ietf/stats/utils.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)