allow spaces before the filter string (#16312)

(cherry picked from commit 5a2b34e159)
This commit is contained in:
Colin Hoglund 2016-06-15 14:17:17 -04:00 committed by Brian Coca
parent 8fc5a6a6f5
commit 877347ad20

View file

@ -173,7 +173,7 @@ class Templar:
self.variable_start = self.environment.variable_start_string
self.variable_end = self.environment.variable_end_string
self._clean_regex = re.compile(r'(?:%s|%s|%s|%s)' % (self.variable_start, self.block_start, self.block_end, self.variable_end))
self._no_type_regex = re.compile(r'.*\|(?:%s)\s*(?:%s)?$' % ('|'.join(C.STRING_TYPE_FILTERS), self.variable_end))
self._no_type_regex = re.compile(r'.*\|\s*(?:%s)\s*(?:%s)?$' % ('|'.join(C.STRING_TYPE_FILTERS), self.variable_end))
def _get_filters(self):
'''