Private
Public Access
1
0

rdata fixes

This commit is contained in:
Sander Roosendaal
2021-04-12 19:10:15 +02:00
parent 53b5660c8f
commit bfd7a5b664
8 changed files with 199 additions and 45 deletions

View File

@@ -9,7 +9,7 @@ def workout_tcxemail_view(request,id=0):
row = rdata(w.csvfilename)
row = rdata(csvfile=w.csvfilename)
code = str(uuid4())
tcxfilename = code+'.tcx'
@@ -171,7 +171,7 @@ def workout_gpxemail_view(request,id=0):
row = rdata(w.csvfilename)
row = rdata(csvfile=w.csvfilename)
code = str(uuid4())
gpxfilename = code+'.gpx'
@@ -235,7 +235,7 @@ def workout_csvemail_view(request,id=0):
w = get_workout(id)
rowdata = rdata(w.csvfilename)
rowdata = rdata(csvfile=w.csvfilename)
code = str(uuid4())
filename = code+'.csv'