summaryrefslogtreecommitdiff
path: root/src/saml2/pack.py
diff options
context:
space:
mode:
authorRoland Hedberg <roland.hedberg@adm.umu.se>2013-01-18 14:59:00 +0100
committerRoland Hedberg <roland.hedberg@adm.umu.se>2013-01-18 14:59:00 +0100
commit13f327c0bc12fa22c7eb6ccbac608cc6baf4ba26 (patch)
tree5442524257c6d17095d9b3cd8b03132864958c5f /src/saml2/pack.py
parent21880631d9dc6ebdd22ca1d4a2c2c187e15b848b (diff)
downloadpysaml2-13f327c0bc12fa22c7eb6ccbac608cc6baf4ba26.tar.gz
Fixed artifact handling
Diffstat (limited to 'src/saml2/pack.py')
-rw-r--r--src/saml2/pack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/saml2/pack.py b/src/saml2/pack.py
index 6ab6e390..c68d213e 100644
--- a/src/saml2/pack.py
+++ b/src/saml2/pack.py
@@ -124,7 +124,7 @@ def http_redirect_message(message, location, relay_state="", typ="SAMLRequest"):
glue_char = "&" if urlparse.urlparse(location).query else "?"
login_url = glue_char.join([location, urllib.urlencode(args)])
headers = [('Location', login_url)]
- body = [""]
+ body = []
return {"headers":headers, "data":body}