From eae0817f822f79894e157171b4a0048167c132e8 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Sat, 25 Jul 2015 21:29:18 +0000 Subject: [PATCH] Fix iterable check --- roles/ipsilon/files/templates/openid/consent_form.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ipsilon/files/templates/openid/consent_form.html b/roles/ipsilon/files/templates/openid/consent_form.html index cf29d38bab..fba03778e4 100644 --- a/roles/ipsilon/files/templates/openid/consent_form.html +++ b/roles/ipsilon/files/templates/openid/consent_form.html @@ -12,7 +12,7 @@ {% for entry in authz_details|dictsort %} {{ entry[0] }} - {%- if entry[1] | iterable -%} + {%- if entry[1] is iterable and not entry[1] is string -%} {{ entry[1] | join(', ') }} {%- else -%} {{ entry[1] }}