Private
Public Access
1
0

small bug fixes

This commit is contained in:
2025-03-28 11:19:54 +01:00
parent b951e24821
commit b83710fca3
5 changed files with 20 additions and 8 deletions

View File

@@ -740,7 +740,10 @@ def join_workouts(r, ids, title='Joined Workout',
while len(files):
row2 = rdata(files[0])
if row2 != 0 and row2 is not None:
row = row+row2
try:
row = row+row2
except TypeError: # pragma: no cover
pass
files = files[1:]
timestr = strftime("%Y%m%d-%H%M%S")