diff --git a/rowers/templates/help.html b/rowers/templates/help.html
index 5ce3b582..cf49d2f7 100644
--- a/rowers/templates/help.html
+++ b/rowers/templates/help.html
@@ -47,7 +47,7 @@
The tools also provide the ability to review a row, stroke by stroke in plots versus time or distance. Basic plots in include HR, Pace, Stroke rate, and power for the erg.
-
+
The tools also provide a text summary of the row.
@@ -119,16 +119,16 @@
Some of our functionality is not related to a single workout, but instead
looks at comparisons, trends, statistics, and other. You can find all
- that under the Analysis Tab.
+ that under the Analysis Tab.
- On-line Racing
+ On-line Challenges
- On-line racing is a
- fun way to race other Rowsandall.com users
- rowing on the same stretch of water.
+ On-line challenges are a
+ fun way to test your boat speed and course line against other Rowsandall.com users
+ rowing on the same stretch of water or on the Concept2 ergometer.
Training Plan
@@ -146,8 +146,8 @@
functionality related to interaction with your team, if you
are part of one.
-
-
+
+
Need more help?
diff --git a/rowers/views/importviews.py b/rowers/views/importviews.py
index 0963cbf3..d1981dc9 100644
--- a/rowers/views/importviews.py
+++ b/rowers/views/importviews.py
@@ -1035,11 +1035,7 @@ def garmin_summaries_view(request):
def garmin_newfiles_ping(request):
t = time.localtime()
timestamp = time.strftime('%b-%d-%Y_%H%M', t)
- with open('garminlog.log','a') as f:
- f.write('\n')
- f.write(timestamp)
- f.write(' ')
- f.write(str(request.body))
+
if request.method != 'POST':
return HttpResponse(status=200)
@@ -1090,11 +1086,6 @@ def garmin_details_view(request):
t = time.localtime()
timestamp = time.strftime('%b-%d-%Y_%H%M', t)
- with open('garminlog.log','a') as f:
- f.write('\n')
- f.write(timestamp)
- f.write(' ')
- f.write(str(request.body))
# POST request
data = json.loads(request.body)