Use argument 'draft' for document instead of 'approved_draft_name' when sending sync notifications to the RFC-Editor.
- Legacy-Id: 5776
This commit is contained in:
parent
88e1d725c5
commit
a4d486ab26
|
@ -466,7 +466,7 @@ def post_approved_draft(url, name):
|
|||
|
||||
text = error = ""
|
||||
try:
|
||||
f = urllib2.urlopen(request, data=urllib.urlencode({ 'approved_draft_name': name }), timeout=20)
|
||||
f = urllib2.urlopen(request, data=urllib.urlencode({ 'draft': name }), timeout=20)
|
||||
text = f.read()
|
||||
status_code = f.getcode()
|
||||
f.close()
|
||||
|
|
Loading…
Reference in a new issue