From 566aef21accd0a15cf127a41edbe14a40c80728c Mon Sep 17 00:00:00 2001 From: jiaola Date: Thu, 9 Jan 2020 11:35:00 -0500 Subject: [PATCH] Fixed over-indentation --- flask_cors/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask_cors/core.py b/flask_cors/core.py index f29aeb4..7654cb1 100644 --- a/flask_cors/core.py +++ b/flask_cors/core.py @@ -359,7 +359,7 @@ def serialize_options(opts): for key in opts.keys(): if key not in DEFAULT_OPTIONS: - LOG.warning("Unknown option passed to Flask-CORS: %s", key) + LOG.warning("Unknown option passed to Flask-CORS: %s", key) # Ensure origins is a list of allowed origins with at least one entry. options['origins'] = sanitize_regex_param(options.get('origins'))