diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-07-13 10:49:10 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-07-13 10:49:10 +0800 |
commit | 1adb3520dcc05852e37b150d29b17a3fb85e16f1 (patch) | |
tree | e81d46311b3eb2c33042ef03bda1e5ea298be35a | |
parent | 6999e788ed45b3e955f527b4750ef63f75b57b88 (diff) | |
download | cexcess-1adb3520dcc05852e37b150d29b17a3fb85e16f1.tar.bz2 |
make_sbpfit_config.py: minor fix to arguments
-rwxr-xr-x | make_sbpfit_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make_sbpfit_config.py b/make_sbpfit_config.py index 8228bd3..f0409c9 100755 --- a/make_sbpfit_config.py +++ b/make_sbpfit_config.py @@ -64,7 +64,7 @@ def main(): parser.add_argument("-j", "--json", dest="json", required=False, help="the *_INFO.json file " + "(default: find ../*_INFO.json)") - parser.add_argument("outfile", nargs="?", + parser.add_argument("outfile", nargs="?", default="sbpfit.conf", help="filename of the output sbpfit config " + "(default: sbpfit.conf)") args = parser.parse_args() |