small bug fixes
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user