From 387c42c495aa1550a73b9ca16f15147b8188e37c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 26 Oct 2016 15:49:48 +0200 Subject: [PATCH] lingo: fix typo in active invoices cell (#13757) --- combo/apps/lingo/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/combo/apps/lingo/models.py b/combo/apps/lingo/models.py index 697e5e75..fd7e6da4 100644 --- a/combo/apps/lingo/models.py +++ b/combo/apps/lingo/models.py @@ -122,7 +122,7 @@ class Regie(models.Model): def get_invoices(self, user, history=False): if not self.is_remote(): - return self.basketitem_set.filter(payment_date__isnull=boot(not history), user=user) + return self.basketitem_set.filter(payment_date__isnull=bool(not history), user=user) if user: url = self.webservice_url + '/invoices/' if history: