Skip to content

Commit 3b124a3

Browse files
committed
Fix bug on settings constructor related to sp_validation_only
1 parent d588d12 commit 3b124a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/onelogin/saml2/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def __init__(self, settings=None, custom_base_path=None, sp_validation_only=Fals
7070
:param custom_base_path: Path where are stored the settings file and the cert folder
7171
:type custom_base_path: string
7272
"""
73-
self.__sp_validation_only = False
73+
self.__sp_validation_only = sp_validation_only
7474
self.__paths = {}
7575
self.__strict = False
7676
self.__debug = False

0 commit comments

Comments
 (0)