summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVlastimil Zíma <vlastimil.zima@nic.cz>2018-09-05 10:34:55 +0200
committerVlastimil Zíma <vlastimil.zima@nic.cz>2018-09-05 10:35:12 +0200
commit065963b49eaf5e162f72510a84ffdaf565464a80 (patch)
tree769bb2c4fc0fb6fb65274dc92324be69acac3a6b
parent8bfc9e1a796f13bd80e70bdff25f38ffc761e4cf (diff)
downloadopenid-065963b49eaf5e162f72510a84ffdaf565464a80.tar.gz
Allow str keys in Message under Python 2.7
-rw-r--r--openid/message.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/openid/message.py b/openid/message.py
index 761e470..554069f 100644
--- a/openid/message.py
+++ b/openid/message.py
@@ -206,7 +206,6 @@ class Message(object):
namespaces = {}
ns_args = []
for key, value in six.iteritems(openid_args):
- key = string_to_text(key, "Binary keys in message creations are deprecated. Use text input instead.")
value = string_to_text(value, "Binary values in message creations are deprecated. Use text input instead.")
if '.' not in key:
ns_alias = NULL_NAMESPACE