From a76d8108fe519182e5972c702c94024ea3b2899f Mon Sep 17 00:00:00 2001 From: DirkGuijt <922322+DirkGuijt@users.noreply.github.com> Date: Thu, 1 Feb 2018 11:55:30 +0100 Subject: [PATCH] small code style change changed double quotes to single quotes to match the coding style --- sanic/request.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sanic/request.py b/sanic/request.py index 98bb049f..908f8c7a 100644 --- a/sanic/request.py +++ b/sanic/request.py @@ -284,8 +284,8 @@ def parse_multipart_form(body, boundary): form_parts = body.split(boundary) for form_part in form_parts[1:-1]: file_name = None - content_type = "text/plain" - content_charset = "utf-8" + content_type = 'text/plain' + content_charset = 'utf-8' field_name = None line_index = 2 line_end_index = 0