From ff8f057234c7b68a4a81dee62e58537e43873c47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 21 Mar 2018 19:05:52 +0100 Subject: [PATCH] oauth2: fix typo in error message (#22713) --- fargo/oauth2/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fargo/oauth2/utils.py b/fargo/oauth2/utils.py index c85c951..e3dc7c7 100644 --- a/fargo/oauth2/utils.py +++ b/fargo/oauth2/utils.py @@ -26,7 +26,7 @@ def get_content_disposition_value(request): content_header = request.META['HTTP_CONTENT_DISPOSITION'] disposition_type, filename = cgi.parse_header(content_header) if disposition_type != 'attachment': - return None, 'wrong disposition type: attachment excpected' + return None, 'wrong disposition type: attachment expected' if 'filename*' in filename: encode, country, name = filename['filename*'].split("'") -- 2.16.2