Projet

Général

Profil

0001-tcl-fix-status-check-usage-of-stop-endpoint-36089.patch

Frédéric Péters, 12 septembre 2019 23:32

Télécharger (844 octets)

Voir les différences:

Subject: [PATCH] tcl: fix status check usage of stop endpoint (#36089)

 passerelle/contrib/tcl/models.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
passerelle/contrib/tcl/models.py
114 114
    def check_status(self):
115 115
        stop_object = Stop.objects.all().first()
116 116
        if stop_object:
117
            self.stop(stop_object.id)
117
            self.stop(None, stop_object.id)
118 118

  
119 119
    def daily(self):
120 120
        super(Tcl, self).daily()
121
-