diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2013-01-16 13:04:40 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2013-01-16 13:04:40 +0100 |
commit | e79ff4b513014925e3a18acacf7ea95900b315dc (patch) | |
tree | 0587b4b614c09fedd1b7f0b001632b1a739265e6 | |
parent | 3274f9ba4b2f013aaee66a4afd2db8f165f83cd4 (diff) |
scripts/csv2sto.py: Fix order of arguments in usage
-rwxr-xr-x | scripts/csv2sto.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/csv2sto.py b/scripts/csv2sto.py index 5b571cf..be8438e 100755 --- a/scripts/csv2sto.py +++ b/scripts/csv2sto.py @@ -23,7 +23,7 @@ def usage(): of CSV file name (# of names in list must match # of CSV files) -n name of the activation data in sto file (default: {}) -T N scale time such that it goes from 0.0 to N - -h show this help and exit""".format(DEFAULT_NAME, os.path.basename(sys.argv[0]))) + -h show this help and exit""".format(os.path.basename(sys.argv[0]), DEFAULT_NAME)) def main(): try: |