From cbeaa52101994374b991633c49090e47ca03e39d Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 8 Mar 2017 20:05:26 +0100 Subject: [PATCH] kivy: minor fix --- gui/kivy/uix/screens.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/kivy/uix/screens.py b/gui/kivy/uix/screens.py index bbe4111d..2ad91786 100644 --- a/gui/kivy/uix/screens.py +++ b/gui/kivy/uix/screens.py @@ -435,7 +435,7 @@ class InvoicesScreen(CScreen): amount = pr.get_amount() if amount: ci.amount = self.app.format_amount_and_units(amount) - status = self.app.invoices.get_status(ci.key) + status = self.app.wallet.invoices.get_status(ci.key) ci.status = invoice_text[status] ci.icon = pr_icon[status] else: