From 9b1d00fb67ce6100f785ca5dcdd3a7ac3d923014 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Tue, 7 Jan 2025 17:48:16 +0100 Subject: [PATCH] fixed small error in workout name detection from FIT --- rowers/dataroutines.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rowers/dataroutines.py b/rowers/dataroutines.py index c8ae3796..851032e7 100644 --- a/rowers/dataroutines.py +++ b/rowers/dataroutines.py @@ -1403,6 +1403,8 @@ def get_title_from_fit(filename): title = ' '.join(record.get_values()['wkt_name'].split()) except KeyError: pass + except AttributeError: + pass return title