From 2431e71ab7076dde2765831056124e5c61ba05bf Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 26 Jan 2026 22:16:07 +0100 Subject: [PATCH] fix qs --- teleforma/management/commands/teleforma-get-same-scripts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teleforma/management/commands/teleforma-get-same-scripts.py b/teleforma/management/commands/teleforma-get-same-scripts.py index d704c17a..ff686e16 100644 --- a/teleforma/management/commands/teleforma-get-same-scripts.py +++ b/teleforma/management/commands/teleforma-get-same-scripts.py @@ -17,7 +17,7 @@ class Command(BaseCommand): scripts = [] ss = Script.objects.filter(period=period) for script in ss: - sss = ss.objects.filter(file=script.file) + sss = ss.filter(file=script.file) for s in sss: scripts.append(s) users.append(s.author.username) -- 2.39.5