strip tags
This commit is contained in:
parent
8e06af0e2e
commit
c3fb943cc4
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@ class Engine:
|
|||
'id': entity['id'],
|
||||
'name': entity['name'],
|
||||
'nodename': entity['nodename'],
|
||||
'tags': entity['tags']
|
||||
'tags': [t.strip() for t in entity['tags']]
|
||||
} for entity in self.pandora.find_entities({
|
||||
'conditions': [
|
||||
{'key': 'type', 'operator': '==', 'value': 'storylines'},
|
||||
|
|
Loading…
Reference in a new issue