From 3f8e29b12cd2b909d4dbbc3964339fd3f56c3203 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Neuha=CC=88user?= Date: Thu, 20 Feb 2014 19:15:42 +0100 Subject: [PATCH] Add Flask.config_class to changelog --- CHANGES | 1 + flask/app.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGES b/CHANGES index 69648f23..c6d252af 100644 --- a/CHANGES +++ b/CHANGES @@ -18,6 +18,7 @@ Version 1.0 - Added support for returning tuples in the form ``(response, headers)`` from a view function. - Added :meth:`flask.Config.from_json`. +- Added :attr:`flask.Flask.config_class`. Version 0.10.2 -------------- diff --git a/flask/app.py b/flask/app.py index 9222540a..257c5e93 100644 --- a/flask/app.py +++ b/flask/app.py @@ -182,6 +182,8 @@ class Flask(_PackageBoundObject): #: #: 1. Default values for certain config options. #: 2. Access to config values through attributes in addition to keys. + #: + #: .. versionadded:: 1.0 config_class = Config #: The debug flag. Set this to `True` to enable debugging of the