From 9b0a72269a6752228a71c88c24891302e3551a2a Mon Sep 17 00:00:00 2001 From: BlackLight Date: Wed, 12 Dec 2018 22:52:51 +0100 Subject: [PATCH] typo --- platypush/plugins/video/omxplayer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'