Skip to content

Commit dbde6b7

Browse files
committed
Fix bug when no txt was sent. Fixes ietf-tools#592
- Legacy-Id: 2856
1 parent 42a6b53 commit dbde6b7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/submit/forms.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ def clean(self):
135135
self.get_draft()
136136
self.group=self.get_working_group()
137137
self.check_previous_submission()
138-
if self.draft.revision == '00' and self.in_first_cut_off:
139-
raise forms.ValidationError(mark_safe(self.cutoff_warning))
138+
if self.draft.revision == '00' and self.in_first_cut_off:
139+
raise forms.ValidationError(mark_safe(self.cutoff_warning))
140140
self.check_tresholds()
141141
return super(UploadForm, self).clean()
142142

0 commit comments

Comments
 (0)