summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hellkamp <marc@gsites.de>2011-11-15 16:21:07 +0100
committerMarcel Hellkamp <marc@gsites.de>2011-11-15 16:21:07 +0100
commite93c995a8b6ef2c220d08c46248aadcc0ebd33eb (patch)
tree7b15cfdfad6d67146a230e92eef4a08041c1ccd5
parent4f359a14d36f43514dc9eed06fac7bdc182adbff (diff)
downloadbottle-e93c995a8b6ef2c220d08c46248aadcc0ebd33eb.tar.gz
fix #247: Correcting set_cookie docstring.
-rwxr-xr-xbottle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bottle.py b/bottle.py
index 800f249..c7aa334 100755
--- a/bottle.py
+++ b/bottle.py
@@ -1344,7 +1344,7 @@ class BaseResponse(object):
:param expires: a datetime object or UNIX timestamp. (default: None)
:param domain: the domain that is allowed to read the cookie.
(default: current domain)
- :param path: limits the cookie to a given path (default: ``/``)
+ :param path: limits the cookie to a given path (default: current path)
:param secure: limit the cookie to HTTPS connections (default: off).
:param httponly: prevents client-side javascript to read this cookie
(default: off, requires Python 2.6 or newer).