@@ -134,7 +134,7 @@ def change_state(request, name):
134134 email_state_changed(request, doc, msg,'doc_state_edited')
135135
136136 if new_state.slug == "approved" and new_tags == [] and has_role(request.user, "Area Director"):
137- email_ad_approved_doc(request, doc, comment)
137+ email_ad_approved_doc(request, doc, comment)
138138
139139 if prev_state and prev_state.slug in ("ann", "rfcqueue") and new_state.slug not in ("rfcqueue", "pub"):
140140 email_pulled_from_rfc_queue(request, doc, comment, prev_state, new_state)
@@ -578,7 +578,7 @@ def to_iesg(request,name):
578578 doc.notify = notify
579579 changes.append("State Change Notice email list changed to %s" % doc.notify)
580580
581- # Get the last available writeup
581+ # Get the last available writeup
582582 previous_writeup = doc.latest_event(WriteupDocEvent,type="changed_protocol_writeup")
583583 if previous_writeup != None:
584584 changes.append(previous_writeup.text)
@@ -904,7 +904,7 @@ def edit_shepherd_writeup(request, name):
904904 writeup = form.cleaned_data['content']
905905 e = WriteupDocEvent(doc=doc, rev=doc.rev, by=login, type="changed_protocol_writeup")
906906
907- # Add the shepherd writeup to description if the document is in submitted for publication state
907+ # Add the shepherd writeup to description if the document is in submitted for publication state
908908 stream_state = doc.get_state("draft-stream-%s" % doc.stream_id)
909909 iesg_state = doc.get_state("draft-iesg")
910910 if (iesg_state or (stream_state and stream_state.slug=='sub-pub')):
0 commit comments