use -c instead of -p

This commit is contained in:
Patrick McDonagh
2018-02-28 15:24:37 -06:00
parent 28fd7fc04c
commit 07d3f4e9ef
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ positional arguments:
optional arguments:
-h, --help show this help message and exit
-s, --send Send emails to everyone in the _to.json file
-p CONFIG_PATH, --config-path CONFIG_PATH
-c CONFIG_PATH, --config-path CONFIG_PATH
The folder path that holds the configuration files
-o OUTPUT_PATH, --output-path OUTPUT_PATH
The folder path that holds the output files

View File

@@ -182,7 +182,7 @@ if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('deviceType', help="Meshify device type")
parser.add_argument('-s', '--send', action='store_true', help="Send emails to everyone in the _to.json file")
parser.add_argument('-p', '--config-path', default=".", help="The folder path that holds the configuration files")
parser.add_argument('-c', '--config-path', default=".", help="The folder path that holds the configuration files")
parser.add_argument('-o', '--output-path', default="files", help="The folder path that holds the output files")
args = parser.parse_args()