From 6155507644f4bf7646147df684f232c3de06e894 Mon Sep 17 00:00:00 2001 From: Simon Date: Sun, 27 Dec 2020 21:01:37 +0000 Subject: [PATCH] Quote removal from options --- bridge_master.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bridge_master.py b/bridge_master.py index 4101db1..e736b20 100755 --- a/bridge_master.py +++ b/bridge_master.py @@ -554,12 +554,14 @@ def options_config(): if _options['TS1_STATIC']: re.sub("\s","",_options['TS1_STATIC']) + re.sub("\'","",_options['TS1_STATIC']) if re.search("![\d\,]",_options['TS1_STATIC']): logger.debug('(OPTIONS) %s - TS1_STATIC contains characters other than numbers and comma, ignoring',_system) continue if _options['TS2_STATIC']: re.sub("\s","",_options['TS2_STATIC']) + re.sub("\'","",_options['TS2_STATIC']) if re.search("![\d\,]",_options['TS2_STATIC']): logger.debug('(OPTIONS) %s - TS2_STATIC contains characters other than numbers and comma, ignoring',_system) continue