Skip to content

Commit 83f7b4c

Browse files
committed
Got rid of some debug traces.
- Legacy-Id: 5130
1 parent bda0cf3 commit 83f7b4c

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

ietf/submit/forms.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@ def get_draft(self):
206206
txt_file.seek(0)
207207
return self.draft
208208

209-
@debug.trace
210209
def save(self):
211210
for ext in ['txt', 'pdf', 'xml', 'ps']:
212211
fd = self.cleaned_data[ext]
@@ -337,13 +336,11 @@ def get_author_buttons(self):
337336
'full_name': full_name})
338337
return ''.join(buttons)
339338

340-
@debug.trace
341339
def save(self, request):
342340
self.save_submitter_info()
343341
self.save_new_draft_info()
344342
self.send_confirmation_mail(request)
345343

346-
@debug.trace
347344
def send_confirmation_mail(self, request):
348345
subject = 'Confirmation for Auto-Post of I-D %s' % self.draft.filename
349346
from_email = settings.IDSUBMIT_FROM_EMAIL
@@ -531,12 +528,10 @@ def save_new_draft_info(self):
531528
author_order=i + 1,
532529
submission=draft)
533530

534-
@debug.trace
535531
def save(self, request):
536532
self.save_new_draft_info()
537533
self.send_mail_to_secretariat(request)
538534

539-
@debug.trace
540535
def send_mail_to_secretariat(self, request):
541536
subject = 'Manual Post Requested for %s' % self.draft.filename
542537
from_email = settings.IDSUBMIT_FROM_EMAIL

0 commit comments

Comments
 (0)