diff --git a/adhocracy4/exports/mixins/general.py b/adhocracy4/exports/mixins/general.py index a2d2837fd..4c9f27938 100644 --- a/adhocracy4/exports/mixins/general.py +++ b/adhocracy4/exports/mixins/general.py @@ -130,4 +130,4 @@ def get_images_data(self, item): for url in re.findall(pattern, description): images.append(self.request.build_absolute_uri(url)) - return ", ".join(images) if images else "" + return "; ".join(images) if images else ""