We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b493ccd + 075c9a3 commit 96cb3e5Copy full SHA for 96cb3e5
1 file changed
docs/index.rst
@@ -37,7 +37,7 @@ The easiest way to grab :mod:`fitparse` is using ``pip``,
37
38
::
39
40
- $ pip install python-fitparse
+ $ pip install fitparse
41
42
43
From github
@@ -96,12 +96,12 @@ Here's a simple program to print all the record fields in an activity file::
96
97
# Print the records name and value (and units if it has any)
98
if record_data.units:
99
- print " * %s: %s %s" % (
+ print(" * %s: %s %s" % (
100
record_data.name, record_data.value, record_data.units,
101
- )
+ ))
102
else:
103
- print " * %s: %s" % (record_data.name, record_data.value)
104
- print
+ print(" * %s: %s" % (record_data.name, record_data.value))
+ print()
105
106
107
License
0 commit comments