From e42155579c9ce5d62d3017e09d66cd5fd2bb71dc Mon Sep 17 00:00:00 2001 From: Kevin Yap Date: Sun, 8 Jun 2014 00:22:46 -0700 Subject: [PATCH] Changed output_retention setting to list in docs --- docs/settings.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/settings.rst b/docs/settings.rst index 4701e92d..a70a5a50 100644 --- a/docs/settings.rst +++ b/docs/settings.rst @@ -76,9 +76,9 @@ Setting name (followed by default value, if any) generating new files. This can be useful in preventing older, unnecessary files from persisting in your output. However, **this is a destructive setting and should be handled with extreme care.** -``OUTPUT_RETENTION = ()`` A tuple of filenames that should be retained and not deleted from the +``OUTPUT_RETENTION = []`` A list of filenames that should be retained and not deleted from the output directory. One use case would be the preservation of version - control data. For example: ``(".hg", ".git", ".bzr")`` + control data. For example: ``[".hg", ".git", ".bzr"]`` ``JINJA_EXTENSIONS = []`` A list of any Jinja2 extensions you want to use. ``JINJA_FILTERS = {}`` A list of custom Jinja2 filters you want to use. The dictionary should map the filtername to the filter function.