From: "Brian C. Lane" bcl@redhat.com
--- pyanaconda/ui/gui/spokes/source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyanaconda/ui/gui/spokes/source.py b/pyanaconda/ui/gui/spokes/source.py index 8188667..bc72564 100644 --- a/pyanaconda/ui/gui/spokes/source.py +++ b/pyanaconda/ui/gui/spokes/source.py @@ -473,7 +473,7 @@ class SourceSpoke(NormalSpoke): if flags.automatedInstall and (not self.data.method.method or not self.payload.baseRepo): return False else: - return not self._error and self.status and (self.data.method.method or self.payload.baseRepo) + return not self._error and self.ready and (self.data.method.method or self.payload.baseRepo)
@property def mandatory(self):
Ack, though Related:#1001538.
On Thu, Sep 12, 2013 at 10:53:10AM -0700, Brian C. Lane wrote:
From: "Brian C. Lane" bcl@redhat.com
pyanaconda/ui/gui/spokes/source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyanaconda/ui/gui/spokes/source.py b/pyanaconda/ui/gui/spokes/source.py index 8188667..bc72564 100644 --- a/pyanaconda/ui/gui/spokes/source.py +++ b/pyanaconda/ui/gui/spokes/source.py @@ -473,7 +473,7 @@ class SourceSpoke(NormalSpoke): if flags.automatedInstall and (not self.data.method.method or not self.payload.baseRepo): return False else:
return not self._error and self.status and (self.data.method.method or self.payload.baseRepo)
return not self._error and self.ready and (self.data.method.method or self.payload.baseRepo)@property def mandatory(self):
-- 1.8.3.1
anaconda-patches mailing list anaconda-patches@lists.fedorahosted.org https://lists.fedorahosted.org/mailman/listinfo/anaconda-patches
anaconda-patches@lists.fedorahosted.org