From 1eecffce9726ccaa1d5b67c80ae6c59e2711e182 Mon Sep 17 00:00:00 2001 From: Dirk Guijt Date: Fri, 2 Feb 2018 09:57:06 +0100 Subject: [PATCH] fixed minor flake8 style problem --- sanic/request.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sanic/request.py b/sanic/request.py index 0660337f..e330e085 100644 --- a/sanic/request.py +++ b/sanic/request.py @@ -324,6 +324,7 @@ def parse_multipart_form(body, boundary): else: fields[field_name] = [value] else: - logger.debug('Form-data field does not have a name parameter in the Content-Disposition header') + logger.debug('Form-data field does not have a \'name\' parameter \ + in the Content-Disposition header') return fields, files