summaryrefslogtreecommitdiff
path: root/paste/request.py
diff options
context:
space:
mode:
authorbbangert <devnull@localhost>2006-08-21 02:17:00 +0000
committerbbangert <devnull@localhost>2006-08-21 02:17:00 +0000
commitbb9d1385c564cc0ec49ecdd852b3d9b118e4a7d0 (patch)
tree7450ef37016fa567fb929accc8224c49b7e2b5e0 /paste/request.py
parent9411e014c3bc334e5b9d06976b01d360bfcc07e3 (diff)
downloadpaste-bb9d1385c564cc0ec49ecdd852b3d9b118e4a7d0.tar.gz
Updated form var caching so that the REQUEST_METHOD is not part of the cache key.
Diffstat (limited to 'paste/request.py')
-rw-r--r--paste/request.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/request.py b/paste/request.py
index bc172a0..092c0c5 100644
--- a/paste/request.py
+++ b/paste/request.py
@@ -137,7 +137,7 @@ def parse_formvars(environ, include_get_vars=True):
XML body) then ``environ['wsgi.input']`` won't be read.
"""
source = (environ.get('QUERY_STRING', ''),
- environ['wsgi.input'], environ['REQUEST_METHOD'],
+ environ['wsgi.input'],
include_get_vars)
if 'paste.parsed_formvars' in environ:
parsed, check_source = environ['paste.parsed_formvars']