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 c731d8c commit a941140Copy full SHA for a941140
src/saml2/sigver.py
@@ -880,7 +880,11 @@ def security_context(conf, debug=None):
880
if conf.crypto_backend == 'xmlsec1':
881
xmlsec_binary = conf.xmlsec_binary
882
if not xmlsec_binary:
883
- xmlsec_binary = get_xmlsec_binary(conf.xmlsec_path)
+ try:
884
+ _path = conf.xmlsec_path
885
+ except AttributeError:
886
+ _path = []
887
+ xmlsec_binary = get_xmlsec_binary(_path)
888
# verify that xmlsec is where it's supposed to be
889
if not os.path.exists(xmlsec_binary):
890
#if not os.access(, os.F_OK):
0 commit comments