We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 992eaa3 commit 508ce6fCopy full SHA for 508ce6f
1 file changed
src/onelogin/saml2/settings.py
@@ -201,7 +201,9 @@ def __load_settings_from_dict(self, settings):
201
if len(errors) == 0:
202
self.__errors = []
203
self.__sp = settings['sp']
204
- self.__idp = settings['idp']
+
205
+ if 'idp' in settings:
206
+ self.__idp = settings['idp']
207
208
if 'strict' in settings:
209
self.__strict = settings['strict']
0 commit comments