From 138a52d278f3bfe46086fd7101bb935ccbfbedb9 Mon Sep 17 00:00:00 2001 From: FinnStutzenstein Date: Fri, 8 Mar 2019 11:05:42 +0100 Subject: [PATCH] Fix blanks for amendments --- openslides/motions/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openslides/motions/models.py b/openslides/motions/models.py index fad64bacf..df7da3869 100644 --- a/openslides/motions/models.py +++ b/openslides/motions/models.py @@ -342,7 +342,7 @@ class Motion(RESTModelMixin, models.Model): if self.is_amendment(): parent_identifier = self.parent.identifier or "" if without_blank: - prefix = f"{parent_identifier} {config['motions_amendments_prefix']} " + prefix = f"{parent_identifier}{config['motions_amendments_prefix']}" else: prefix = f"{parent_identifier} {config['motions_amendments_prefix']} " elif self.category is None or not self.category.prefix: