diff options
author | Tobias Klauser <tobias.klauser@uzh.ch> | 2013-01-29 15:12:49 +0100 |
---|---|---|
committer | Tobias Klauser <tobias.klauser@uzh.ch> | 2013-01-29 15:12:49 +0100 |
commit | 2392e4535cda9b5727002b86723337ef721043a1 (patch) | |
tree | 25ba65568b84359b447a9cfb6c4262926ffa8ccd | |
parent | e953e9ac75341b928ae89861ce38f7bba0d8b911 (diff) |
scripts/osim-extract.py: Fix typo in basename function call
-rwxr-xr-x | scripts/osim-extract.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/osim-extract.py b/scripts/osim-extract.py index e9686ec..1c0de68 100755 --- a/scripts/osim-extract.py +++ b/scripts/osim-extract.py @@ -22,8 +22,7 @@ options: -j print only joint names -m print only muscle names -v verbose mode - -h show this help and exit""".format(os.path.basname(sys.argv[0]))) - + -h show this help and exit""".format(os.path.basename(sys.argv[0]))) def main(): try: |