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

Commit 4a7b018

Browse files
authored
Merge pull request #14 from nsklikas/master
Don't deepcopy config
2 parents 707b71b + c6a3b3b commit 4a7b018

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/oidcmsg/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def add_issuer(conf, issuer):
1616
if key == 'abstract_storage_cls':
1717
res[key] = val
1818
else:
19-
_val = copy.deepcopy(val)
19+
_val = copy.copy(val)
2020
_val['issuer'] = quote_plus(issuer)
2121
res[key] = _val
2222
return res

0 commit comments

Comments
 (0)