diff --git a/rowers/management/commands/processemail.py b/rowers/management/commands/processemail.py index 6835e089..0046e586 100644 --- a/rowers/management/commands/processemail.py +++ b/rowers/management/commands/processemail.py @@ -202,9 +202,10 @@ class Command(BaseCommand): res = polarstuff.get_all_new_workouts(polar_available) # Concept2 - rowers = Rower.objects.filter(c2_auto_import=True).exclude(rowerplan='basic') + rowers = Rower.objects.filter(c2_auto_import=True) for r in rowers: - c2stuff.get_c2_workouts(r) + if user_is_not_basic(rower.user): + c2stuff.get_c2_workouts(r) messages = Message.objects.filter(mailbox_id = workoutmailbox.id)