summaryrefslogtreecommitdiff
path: root/openid/association.py
diff options
context:
space:
mode:
authorhttp://j3h.us/ <http://j3h.us/@lillialexis.local>2007-11-05 20:48:14 +0000
committerhttp://j3h.us/ <http://j3h.us/@lillialexis.local>2007-11-05 20:48:14 +0000
commit09d1eb2065394da901bb5ce2c992795d15668eb4 (patch)
tree3063aec369b4ec9c05c509981cc7b0d1a7946071 /openid/association.py
parent01995ca19a402bfc17ce03d69ef1731fc9715b64 (diff)
downloadopenid-09d1eb2065394da901bb5ce2c992795d15668eb4.tar.gz
[project @ Make setAllowedTypes make sure that the association types and session types are allowed by OpenID]
Diffstat (limited to 'openid/association.py')
-rw-r--r--openid/association.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openid/association.py b/openid/association.py
index 3e42617..5be534b 100644
--- a/openid/association.py
+++ b/openid/association.py
@@ -135,7 +135,7 @@ class SessionNegotiator(object):
"""
def __init__(self, allowed_types):
- self.allowed_types = allowed_types
+ self.setAllowedTypes(allowed_types)
def copy(self):
return self.__class__(list(self.allowed_types))