aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/http/cookies.py
diff options
context:
space:
mode:
Diffstat (limited to 'netlib/http/cookies.py')
-rw-r--r--netlib/http/cookies.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/netlib/http/cookies.py b/netlib/http/cookies.py
index c5ac4591..88c76870 100644
--- a/netlib/http/cookies.py
+++ b/netlib/http/cookies.py
@@ -169,8 +169,8 @@ def parse_set_cookie_headers(headers):
class CookieAttrs(ImmutableMultiDict):
@staticmethod
- def _kconv(v):
- return v.lower()
+ def _kconv(key):
+ return key.lower()
@staticmethod
def _reduce_values(values):