Skip to content

Commit

Permalink
debug verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
fsoest committed Jan 11, 2025
1 parent eb53f24 commit 06e72a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S1/waitinglists/management/commands/module_cleanup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ def handle(self, *args, **kwargs):
)
)
mod_3_users = set(
WaitingList.objects.filter(module=mod3, user__in=mod_1_users).values_list(
WaitingList.objects.filter(module=mod3, completed=True).values_list(
"user__username", flat=True
)
)
mod_4_users = set(
WaitingList.objects.filter(module=mod4, user__in=mod_1_users).values_list(
WaitingList.objects.filter(module=mod4, completed=True).values_list(
"user__username", flat=True
)
)
Expand Down

0 comments on commit 06e72a8

Please sign in to comment.