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:
Henrik Levkowetz 2013-06-09 17:55:47 +00:00
parent 88e1d725c5
commit a4d486ab26

View file

@ -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()