Improved botched docstring wording for silent failure.

This commit is contained in:
Aaron Kavlie 2011-03-14 23:32:33 -04:00
parent fbd488678f
commit 1a7f579ece

View file

@ -89,7 +89,7 @@ class Config(dict):
app.config.from_pyfile(os.environ['YOURAPPLICATION_SETTINGS']) app.config.from_pyfile(os.environ['YOURAPPLICATION_SETTINGS'])
:param variable_name: name of the environment variable :param variable_name: name of the environment variable
:param silent: set to `True` if you want silent to fail for missing :param silent: set to `True` if you want silent failure for missing
files. files.
:return: bool. `True` if able to load config, `False` otherwise. :return: bool. `True` if able to load config, `False` otherwise.
""" """
@ -113,7 +113,7 @@ class Config(dict):
:param filename: the filename of the config. This can either be an :param filename: the filename of the config. This can either be an
absolute filename or a filename relative to the absolute filename or a filename relative to the
root path. root path.
:param silent: set to `True` if you want silent to fail for missing :param silent: set to `True` if you want silent failure for missing
files. files.
.. versionadded:: 0.7 .. versionadded:: 0.7