Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# You can set these variables from the command line.
SPHINXOPTS =
#SPHINXBUILD = sphinx-build
SPHINXBUILD = /Library/Frameworks/Python.framework/Versions/3.6/bin/sphinx-build
SPHINXBUILD = /Library/Frameworks/Python.framework/Versions/3.7/bin/sphinx-build
SPHINXPROJ = oidcrp
SOURCEDIR = source
BUILDDIR = build
Expand Down
2 changes: 1 addition & 1 deletion src/oidcrp/cookie.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def make_cookie(name, load, seed, expire=0, domain="", path="", timestamp="",
:param enc_key: The key to use for cookie encryption.
:type enc_key: byte string
:param secure: A secure cookie is only sent to the server with an encrypted request over the
HTTPS protocol.
HTTPS protocol.
:type secure: boolean
:param http_only: HttpOnly cookies are inaccessible to JavaScript's Document.cookie API
:type http_only: boolean
Expand Down