From 9ea7e255376d2db0c22efcedfa097b5a640977fd Mon Sep 17 00:00:00 2001 From: dillbyrne Date: Sat, 31 Mar 2018 13:26:30 +0100 Subject: [PATCH] Updating version number to 1.5 --- es-cec-input.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/es-cec-input.py b/es-cec-input.py index 9a08897..e48acbe 100755 --- a/es-cec-input.py +++ b/es-cec-input.py @@ -2,7 +2,7 @@ """ Name: es-cec-input.py -Version: 1.4 +Version: 1.5 Description: cec remote control for emulation station in retropie Author: dillbyrne Homepage: https://github.com/dillbyrne/es-cec-input @@ -118,7 +118,8 @@ def get_key_bindings(ra_cfg): keys = [] with open(ra_cfg, 'r') as fp: for line in fp: - if 'input_player1_' in line and '#' not in line and '_analog_dpad_mode' not in line: + if 'input_player1_' in line and '#' not in line and\ + '_analog_dpad_mode' not in line: keys.append(line.split('=')[1][2:-2]) return keys