Skip to content

Commit

Permalink
chore: address review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
rjsparks committed Jul 22, 2023
1 parent b65a318 commit 5710b7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/doc/views_status_change.py
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ def last_call(request, name):
form = LastCallTextForm(initial=dict(last_call_text=escape(last_call_event.text)))

if request.method == 'POST':
if "save_last_call_text" in request.POST or "send_last_call_request" in request.POST and status_change.ad is not None:
if "save_last_call_text" in request.POST or ("send_last_call_request" in request.POST and status_change.ad is not None):
form = LastCallTextForm(request.POST)
if form.is_valid():
events = []
Expand Down

0 comments on commit 5710b7a

Please sign in to comment.