From 88e4a07f06525358bc702a2ad2c28fc8979ceef9 Mon Sep 17 00:00:00 2001 From: krmax44 Date: Tue, 15 Mar 2022 15:17:06 +0100 Subject: [PATCH] fix index error? --- froide_govplan/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/froide_govplan/utils.py b/froide_govplan/utils.py index ada5285..919e5fa 100644 --- a/froide_govplan/utils.py +++ b/froide_govplan/utils.py @@ -19,7 +19,7 @@ def make_request_url(plan, publicbody): query = { "subject": subject.encode("utf-8"), "body": body, - "tags": "{},{}{}".format(TAG_NAME, plan.get_plan_tag()), + "tags": "{},{}{}".format(TAG_NAME, *plan.get_plan_tag()), } hide_features = ["hide_public", "hide_similar", "hide_draft"]