From dddb8d2d9cd71c0854e1322ec3e23f489146c403 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Mon, 10 Apr 2023 13:39:33 +0200 Subject: [PATCH] strava export error --- rowers/integrations/strava.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/rowers/integrations/strava.py b/rowers/integrations/strava.py index e6bf9713..2eb3f67d 100644 --- a/rowers/integrations/strava.py +++ b/rowers/integrations/strava.py @@ -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