summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2013-02-18 08:21:15 -0500
committerChris Lumens <clumens@redhat.com>2013-02-20 05:19:45 -0500
commit6dc0c9529cc1dd37402898175fc8ac85224f1cda (patch)
tree4f286380a1779edad22cfd55ec162aa9c6159efd
parentea49794d6167d12fd3f9041312409842da3c1a0e (diff)
downloadanaconda-6dc0c9529cc1dd37402898175fc8ac85224f1cda.tar.gz
anaconda-6dc0c9529cc1dd37402898175fc8ac85224f1cda.tar.xz
anaconda-6dc0c9529cc1dd37402898175fc8ac85224f1cda.zip
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.
-rw-r--r--pyanaconda/ui/gui/hubs/__init__.py4
1 files 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,