From 260fe8f8cdc2702ae28d70f365c95581bcaf354e Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Fri, 29 Jun 2018 10:37:49 -0500 Subject: [PATCH] Change alternate bridge config to single letter CLI flag. --- HB_Bridge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HB_Bridge.py b/HB_Bridge.py index f6c0730..9f63eaa 100644 --- a/HB_Bridge.py +++ b/HB_Bridge.py @@ -180,7 +180,7 @@ if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('-c', '--config', action='store', dest='CONFIG_FILE', help='/full/path/to/config.file (default hblink.cfg)') parser.add_argument('-l', '--logging', action='store', dest='LOG_LEVEL', help='Override config file logging level.') - parser.add_argument('-bc','--bridge_config', action='store', dest='BRIDGE_CONFIG_FILE', help='/full/path/to/bridgeconfig.cfg (default HB_Bridge.cfg)') + parser.add_argument('-b','--bridge_config', action='store', dest='BRIDGE_CONFIG_FILE', help='/full/path/to/bridgeconfig.cfg (default HB_Bridge.cfg)') cli_args = parser.parse_args() # Ensure we have a path for the config file, if one wasn't specified, then use the default (top of file)