From 346a2b58357554916bf9726486811eaae1938c59 Mon Sep 17 00:00:00 2001 From: Jakub Filak Date: Mon, 8 Jun 2015 15:21:07 +0200 Subject: [PATCH] Fix an error introduced with the details on System page The source tuple no longer consists of 3 members (name, source, support_details) but consists of 2 members (name, source). Signed-off-by: Jakub Filak --- src/gnome_abrt/controller.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gnome_abrt/controller.py.in b/src/gnome_abrt/controller.py.in index 06467e2..428712c 100644 --- a/src/gnome_abrt/controller.py.in +++ b/src/gnome_abrt/controller.py.in @@ -53,7 +53,7 @@ class Controller(object): self.run_event_fn("open-gui", problem) def _refresh_sources(self): - for name, src, _ in self.sources: + for name, src in self.sources: try: src.refresh() except errors.UnavailableSource: -- 2.1.0