From 6aba5c36614ad74777631817625f910a05aebd9a Mon Sep 17 00:00:00 2001 From: vabene1111 Date: Wed, 18 May 2022 16:27:07 +0200 Subject: [PATCH] fixed plan to eat tag delimeter --- cookbook/integration/plantoeat.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cookbook/integration/plantoeat.py b/cookbook/integration/plantoeat.py index b0ed72181..8eb4cb0dc 100644 --- a/cookbook/integration/plantoeat.py +++ b/cookbook/integration/plantoeat.py @@ -49,6 +49,7 @@ class Plantoeat(Integration): ) if tags: + tags = tags.replace('^',',') for k in tags.split(','): keyword, created = Keyword.objects.get_or_create(name=k.strip(), space=self.request.space) recipe.keywords.add(keyword)