From 6dc0c9529cc1dd37402898175fc8ac85224f1cda Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Mon, 18 Feb 2013 08:21:15 -0500 Subject: Don't try to update spokes that are indirect. This was just minor confusion. It's not the spoke being processed that we need to be concerned about. It's all the ones that might get their incompleteness checked. --- pyanaconda/ui/gui/hubs/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyanaconda/ui/gui/hubs/__init__.py b/pyanaconda/ui/gui/hubs/__init__.py index f41cad72a..75e0309d0 100644 --- a/pyanaconda/ui/gui/hubs/__init__.py +++ b/pyanaconda/ui/gui/hubs/__init__.py @@ -387,8 +387,8 @@ class Hub(GUIObject, common.Hub): self._inSpoke = False # Now update the selector with the current status and completeness. - if not spoke.indirect: - for sp in self._spokes.itervalues(): + for sp in self._spokes.itervalues(): + if not sp.indirect: self._updateCompleteness(sp) # And then if that spoke wants us to jump straight to another one, -- cgit