From 86b35df3abeb08661eb8dc5e3c76cb0f920f8f21 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Wed, 13 Jan 2021 08:33:22 +0100 Subject: [PATCH] bug fix --- rowers/management/commands/processemail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rowers/management/commands/processemail.py b/rowers/management/commands/processemail.py index 2c4201c8..028b30f7 100644 --- a/rowers/management/commands/processemail.py +++ b/rowers/management/commands/processemail.py @@ -204,7 +204,7 @@ class Command(BaseCommand): # Concept2 rowers = Rower.objects.filter(c2_auto_import=True) for r in rowers: - if user_is_not_basic(rower.user): + if user_is_not_basic(r.user): c2stuff.get_c2_workouts(r)