From f73da2b7ad7305ca9f0559e5af7fbe23e832f57e Mon Sep 17 00:00:00 2001 From: Donny Mellstrom Date: Wed, 19 Sep 2018 14:07:01 -0500 Subject: [PATCH] Fix doc block in app.py The comment in app.py explaining how to make requests to the service references an invalid key `base64_html`, which has apparently been deprecated in favor of `content`. --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 273f15b6..2f1e2f6c 100644 --- a/app.py +++ b/app.py @@ -18,7 +18,7 @@ def application(request): """ To use this application, the user must send a POST request with base64 or form encoded encoded HTML content and the wkhtmltopdf Options in - request data, with keys 'base64_html' and 'options'. + request data, with keys 'content' and 'options'. The application will return a response with the PDF file. """ if request.method != 'POST':