Skip to content

Commit

Permalink
Small update to usage help.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas O'Dowd committed Nov 4, 2013
1 parent 5716a11 commit afb00f8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# lemondcsv v1.1.0
# lemondcsv v1.1.1

This script converts a native Lemond Revolution Power Pilot CVS
workout file to a Garmin TCX file. The TCX file can be then imported
Expand Down
9 changes: 6 additions & 3 deletions lemondcsv.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,12 @@
Simply run the program from the shell as follows:
./lemondcsv.py 09261300.CSV > 09261300.tcx
./lemondcsv.py 09261300.CSV
This is version: v1.0.1. You can always find the latest version of
This will create a new file of the same name but with a TCX extension
in the same directory as the CSV file, ie 09261300.tcx.
This is version: v1.1.1. You can always find the latest version of
this script at: https://github.com/tpodowd/lemondcsv
"""

Expand Down Expand Up @@ -352,7 +355,7 @@ def output_name(iname):


def usage_exit():
sys.stderr.write("Usage: lemondcsv.py [-f file.tcx] workout.csv\n")
sys.stderr.write("Usage: lemondcsv.py [-f workout.tcx] workout.csv\n")
sys.exit(1)

opts, args = getopt.getopt(sys.argv[1:], 'f:h')
Expand Down

0 comments on commit afb00f8

Please sign in to comment.