Private
Public Access
1
0

strava export error

This commit is contained in:
Sander Roosendaal
2023-04-10 13:39:33 +02:00
parent 764044899a
commit dddb8d2d9c

View File

@@ -187,15 +187,15 @@ class StravaIntegration(SyncIntegration):
except KeyError:
activity_type = 'Rowing'
_ = myqueue(queue,
handle_strava_sync,
self.rower.stravatoken,
workout.id,
tcxfile, workout.name, activity_type,
workout.notes)
_ = myqueue(queue,
handle_strava_sync,
self.rower.stravatoken,
workout.id,
tcxfile, workout.name, activity_type,
workout.notes)
dologging('strava_export_log.log', 'Exporting as {t} from {w}'.format(
t=activity_type, w=workout.workouttype))
dologging('strava_export_log.log', 'Exporting as {t} from {w}'.format(
t=activity_type, w=workout.workouttype))
return 1