summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorricordisamoa <ricordisamoa@openmailbox.org>2016-12-31 16:33:51 +0100
committerMarkus Unterwaditzer <markus@unterwaditzer.net>2016-12-31 16:33:51 +0100
commitc5f704c894893cfdd496adcb5c358f406ccbaf84 (patch)
tree3737a1b75bba6b0c5489ecba4395c2dd61f668b2
parentf0f7ec8c9552198125a6d10263ea9a8d2a001774 (diff)
downloadwerkzeug-c5f704c894893cfdd496adcb5c358f406ccbaf84.tar.gz
Add empty line in docstring of BaseCache.clear() (#839)
Tags should be clearly separated from the method's summary, otherwise they may not be parsed correctly: http://werkzeug.pocoo.org/docs/0.11/contrib/cache/#werkzeug.contrib.cache.BaseCache.clear
-rw-r--r--werkzeug/contrib/cache.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/werkzeug/contrib/cache.py b/werkzeug/contrib/cache.py
index 5199e22f..170b8cdf 100644
--- a/werkzeug/contrib/cache.py
+++ b/werkzeug/contrib/cache.py
@@ -224,6 +224,7 @@ class BaseCache(object):
def clear(self):
"""Clears the cache. Keep in mind that not all caches support
completely clearing the cache.
+
:returns: Whether the cache has been cleared.
:rtype: boolean
"""