From 6c97a9c6c787b94fce10cd64d1e9471e0f10e5d4 Mon Sep 17 00:00:00 2001 From: James Ebentier Date: Wed, 4 Feb 2015 10:54:55 -0800 Subject: [PATCH] MultipartForm: some more fixing of formating --- src/main/resources/python/api.mustache | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/resources/python/api.mustache b/src/main/resources/python/api.mustache index 2a7bf5d65a2..30214af6d06 100644 --- a/src/main/resources/python/api.mustache +++ b/src/main/resources/python/api.mustache @@ -84,6 +84,7 @@ class {{classname}}(object): {{#formParams}} if ('{{paramName}}' in params): {{#notFile}}formParams['{{paramName}}'] = params['{{paramName}}']{{/notFile}}{{#isFile}}files['{{paramName}}'] = params['{{paramName}}']{{/isFile}} + {{newline}} {{/formParams}} {{#bodyParam}}