strip whitespace

This commit is contained in:
j 2018-02-04 19:28:35 +01:00
parent 49e045daf4
commit 43c9849b16
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ class Engine:
# Get and cache playlists
self.playlists = [playlist for playlist in [{
'id': storyline['id'],
'name': storyline['nodename'],
'name': storyline['nodename'].strip(),
'tags': storyline['tags'],
'clips': [{
'item': clip['id'].split('/')[0],