Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 2ef92f0

Browse files
committed
'keys' attribute in configuration file becomes 'key_conf' attribute in Configuration instance.
Bumped version.
1 parent 5d4a2c5 commit 2ef92f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/flask_rp/application.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ def init_oidc_rp_handler(app):
1414
_rp_conf = app.rp_config
1515

1616
if _rp_conf.keys:
17-
_kj = init_key_jar(**_rp_conf.keys)
18-
_path = _rp_conf.keys['public_path']
17+
_kj = init_key_jar(**_rp_conf.key_conf)
18+
_path = _rp_conf.key_conf['public_path']
1919
# removes ./ and / from the begin of the string
2020
_path = re.sub('^(.)/', '', _path)
2121
else:

0 commit comments

Comments
 (0)