Private
Public Access
1
0

Merge branch 'release/v12.49'

This commit is contained in:
Sander Roosendaal
2020-05-23 14:38:59 +02:00

View File

@@ -2100,7 +2100,10 @@ def getsmallrowdata_db_old(columns, ids=[], doclean=True, workstrokesonly=True):
def getrowdata(id=0):
# check if valid ID exists (workout exists)
row = Workout.objects.get(id=id)
try:
row = Workout.objects.get(id=id)
except Workout.DoesNotExist:
return rrdata(),None
f1 = row.csvfilename