diff options
author | Baruch Sterin <baruchs@gmail.com> | 2011-10-24 15:21:08 -0700 |
---|---|---|
committer | Baruch Sterin <baruchs@gmail.com> | 2011-10-24 15:21:08 -0700 |
commit | 521ec0fcf93faf213e3ad5346785a85a61560c71 (patch) | |
tree | d8d265bc2aac26ed42fd6e86466015f42c9dd26a /src/python | |
parent | 16e12f1852008d477a2340484764b627947b7b38 (diff) | |
download | abc-521ec0fcf93faf213e3ad5346785a85a61560c71.tar.gz abc-521ec0fcf93faf213e3ad5346785a85a61560c71.tar.bz2 abc-521ec0fcf93faf213e3ad5346785a85a61560c71.zip |
pyabc: fix command line parser in reachx_cmx.py and abcpy_test.py
Diffstat (limited to 'src/python')
-rw-r--r-- | src/python/abcpy_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/abcpy_test.py b/src/python/abcpy_test.py index 912cae9f..28c3505b 100644 --- a/src/python/abcpy_test.py +++ b/src/python/abcpy_test.py @@ -34,7 +34,7 @@ import optparse def pytest3_cmd(args): usage = "usage: %prog [options]" - parser = optparse.OptionParser(usage) + parser = optparse.OptionParser(usage, prog="pytest3") parser.add_option("-c", "--cmd", dest="cmd", help="command to ask help for") parser.add_option("-v", "--version", action="store_true", dest="version", help="display Python Version") |