From 065963b49eaf5e162f72510a84ffdaf565464a80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vlastimil=20Z=C3=ADma?= Date: Wed, 5 Sep 2018 10:34:55 +0200 Subject: Allow str keys in Message under Python 2.7 --- openid/message.py | 1 - 1 file changed, 1 deletion(-) 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 -- cgit v1.2.1