summaryrefslogtreecommitdiffstats
path: root/ipapython
diff options
context:
space:
mode:
Diffstat (limited to 'ipapython')
-rw-r--r--ipapython/cookie.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipapython/cookie.py b/ipapython/cookie.py
index 8abd9617b..57523a402 100644
--- a/ipapython/cookie.py
+++ b/ipapython/cookie.py
@@ -112,7 +112,7 @@ class Cookie(object):
cookie = Cookie('session', session_id,
domain=my_domain, path=mypath,
- httpOnly=True, secure=True, expires=expiration)
+ httponly=True, secure=True, expires=expiration)
headers.append(('Set-Cookie', str(cookie)))