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 6fcc7d4 commit f80ee06Copy full SHA for f80ee06
1 file changed
src/onelogin/saml2/settings.py
@@ -196,8 +196,9 @@ def __load_settings_from_dict(self, settings):
196
if len(errors) == 0:
197
self.__errors = []
198
self.__sp = settings['sp']
199
- self.__idp = settings['idp']
200
+ if 'idp' in settings:
201
+ self.__idp = settings['idp']
202
if 'strict' in settings:
203
self.__strict = settings['strict']
204
if 'debug' in settings:
0 commit comments