summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hellkamp <marc@gsites.de>2009-07-10 17:25:58 +0200
committerMarcel Hellkamp <marc@gsites.de>2009-07-10 17:27:03 +0200
commit9dfe6a48d56c02cd89af360c2e52fca8140df5b8 (patch)
treea2c521404d1839ec9d2c65c3bfcde48c31f5b0fd
parent914d03f3fca5a99723a4a47069deaf88ac288ecf (diff)
downloadbottle-9dfe6a48d56c02cd89af360c2e52fca8140df5b8.tar.gz
Fixed bug in Request.params. Version bump
-rw-r--r--bottle.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bottle.py b/bottle.py
index 2a67fff..6f7043e 100644
--- a/bottle.py
+++ b/bottle.py
@@ -245,6 +245,7 @@ class Request(threading.local):
if self._GETPOST is None:
self._GETPOST = dict(self.GET)
self._GETPOST.update(self.POST)
+ return self._GETPOST
@property
def COOKIES(self):