From e341cdc5fe2f0a0c47b94c1a58d38ac03786db34 Mon Sep 17 00:00:00 2001 From: Roland Hedberg Date: Wed, 15 Jul 2015 20:14:54 +0200 Subject: [PATCH] xmldsig part of saml2 --- example/sp-wsgi/sp.py | 2 +- setup.py | 2 +- tests/idp_test/target_idp.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/example/sp-wsgi/sp.py b/example/sp-wsgi/sp.py index a5c598e..0a6befb 100755 --- a/example/sp-wsgi/sp.py +++ b/example/sp-wsgi/sp.py @@ -38,7 +38,7 @@ from saml2.s_utils import sid from saml2.s_utils import rndstr #from srtest import exception_trace from saml2.samlp import Extensions -import xmldsig as ds +from saml2 import xmldsig as ds logger = logging.getLogger("") hdlr = logging.FileHandler('spx.log') diff --git a/setup.py b/setup.py index 55f8331..146faa5 100755 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ tests_require = [ setup( name='pysaml2', - version='3.0.0', + version='3.0.1a', description='Python implementation of SAML Version 2', # long_description = read("README"), author='Roland Hedberg', diff --git a/tests/idp_test/target_idp.py b/tests/idp_test/target_idp.py index 5ef6c44..4b954ec 100755 --- a/tests/idp_test/target_idp.py +++ b/tests/idp_test/target_idp.py @@ -4,7 +4,7 @@ from saml2.saml import NAME_FORMAT_URI __author__ = 'rolandh' import json -import xmldsig as ds +from saml2 import xmldsig as ds from saml2.saml import NAME_FORMAT_UNSPECIFIED, NAME_FORMAT_URI, NAME_FORMAT_BASIC BASE = "http://localhost:8088"