diff --git a/platypush/plugins/video/omxplayer.py b/platypush/plugins/video/omxplayer.py index 06cc7ca5..395075fb 100644 --- a/platypush/plugins/video/omxplayer.py +++ b/platypush/plugins/video/omxplayer.py @@ -452,7 +452,7 @@ class VideoOmxplayerPlugin(Plugin): return [ { 'url': 'https://www.youtube.com/watch?v=' + item['id']['videoId'], - 'title' item.get('snippet', {}).get('title', ''), + 'title': item.get('snippet', {}).get('title', ''), } for item in get_plugin('google.youtube').search(query=query).output if item.get('id', {}).get('kind') == 'youtube#video'