This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
lcs/lcs/__init__.py

17 lines
450 B
Python

import sys
import os
sys.path.insert(0, os.path.dirname(__file__))
try:
import qommon
except ImportError:
print >> sys.stderr, 'Failed to import module \'qommon\''
print >> sys.stderr, ' export CVSROOT=... (for w.c.s., see labs)'
print >> sys.stderr, ' (cd .. && cvs checkout -d lasso-conformance-sp/lcs/qommon wcs/wcs/qommon)'
sys.exit(1)
import lasso
if not hasattr(lasso, 'SAML2_SUPPORT'):
lasso.SAML2_SUPPORT = False