From: Guillaume Pellerin Date: Mon, 26 Jan 2026 21:16:07 +0000 (+0100) Subject: fix qs X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=2431e71ab7076dde2765831056124e5c61ba05bf;p=teleforma.git fix qs --- 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)