From 07d3f4e9ef79af1f4303fa752da36bb2ee245a53 Mon Sep 17 00:00:00 2001 From: Patrick McDonagh Date: Wed, 28 Feb 2018 15:24:37 -0600 Subject: [PATCH] use -c instead of -p --- README.md | 2 +- reports_xlsx.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 74b2fd8..456ae58 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/reports_xlsx.py b/reports_xlsx.py index d109497..2a4122d 100644 --- a/reports_xlsx.py +++ b/reports_xlsx.py @@ -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()