From a60e62574e1a5c8c670b6c224b00577c2be9b81a Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Tue, 30 Dec 2008 17:26:19 -0500 Subject: Fix a traceback in checking for network install (ricky AT fedoraproject.org). --- anaconda | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'anaconda') diff --git a/anaconda b/anaconda index ec0ba47e9..a0f2ff16d 100755 --- a/anaconda +++ b/anaconda @@ -584,7 +584,7 @@ class Anaconda: numNetDevs == 0: fail = True elif self.stage2 is not None: - if stage2.startswith("cdrom://") and \ + if self.stage2.startswith("cdrom://") and \ not os.path.isdir("/mnt/source/Packages") and \ numNetDevs == 0: fail = True -- cgit