Skip to content

Commit a4d486a

Browse files
committed
Use argument 'draft' for document instead of 'approved_draft_name' when sending sync notifications to the RFC-Editor.
- Legacy-Id: 5776
1 parent 88e1d72 commit a4d486a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/sync/rfceditor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ def post_approved_draft(url, name):
466466

467467
text = error = ""
468468
try:
469-
f = urllib2.urlopen(request, data=urllib.urlencode({ 'approved_draft_name': name }), timeout=20)
469+
f = urllib2.urlopen(request, data=urllib.urlencode({ 'draft': name }), timeout=20)
470470
text = f.read()
471471
status_code = f.getcode()
472472
f.close()

0 commit comments

Comments
 (0)