From 9380a2386707a36035810096e425f7d589b61915 Mon Sep 17 00:00:00 2001 From: tomkat83 Date: Fri, 8 Dec 2017 20:35:32 +0100 Subject: [PATCH] Fix typo --- resources/lib/json_rpc.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/resources/lib/json_rpc.py b/resources/lib/json_rpc.py index a965881d..19ae0ef1 100644 --- a/resources/lib/json_rpc.py +++ b/resources/lib/json_rpc.py @@ -193,49 +193,49 @@ def skipprevious(): def input_up(): """ - Tells Kodi the users pushed up + Tells Kodi the user pushed up """ jsonrpc("Input.Up").execute() def input_down(): """ - Tells Kodi the users pushed down + Tells Kodi the user pushed down """ jsonrpc("Input.Down").execute() def input_left(): """ - Tells Kodi the users pushed left + Tells Kodi the user pushed left """ jsonrpc("Input.Left").execute() def input_right(): """ - Tells Kodi the users pushed left + Tells Kodi the user pushed left """ jsonrpc("Input.Right").execute() def input_select(): """ - Tells Kodi the users pushed select + Tells Kodi the user pushed select """ jsonrpc("Input.Select").execute() def input_home(): """ - Tells Kodi the users pushed home + Tells Kodi the user pushed home """ jsonrpc("Input.Home").execute() def input_back(): """ - Tells Kodi the users pushed back + Tells Kodi the user pushed back """ jsonrpc("Input.Back").execute()