summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorRoland Hedberg <roland.hedberg@adm.umu.se>2013-02-17 20:49:13 +0100
committerRoland Hedberg <roland.hedberg@adm.umu.se>2013-02-17 20:49:13 +0100
commit92a4f57c9434c19fbfe48dfe87c10a4b05bbeadc (patch)
treed12321008a82c0e7b4c1f5060da1990461482a7d /script
parentf9c8a0849817e4514f266d36f37a9e0e11ecc644 (diff)
downloadpysaml2-92a4f57c9434c19fbfe48dfe87c10a4b05bbeadc.tar.gz
Rewrote the IdP to be more OO then F.
Diffstat (limited to 'script')
-rwxr-xr-xscript/saml2c.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/script/saml2c.py b/script/saml2c.py
index 6cbdc286..19063278 100755
--- a/script/saml2c.py
+++ b/script/saml2c.py
@@ -1,9 +1,10 @@
#!/usr/bin/env python
-
__author__ = 'rohe0002'
from idp_test import saml2base
from idp_test import SAML2client
+from idp_test.check import factory
+
-cli = SAML2client(saml2base)
+cli = SAML2client(saml2base, factory)
cli.run() \ No newline at end of file