summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2005-11-17 08:26:30 +0000
committerChris Lumens <clumens@redhat.com>2005-11-17 08:26:30 +0000
commitd64c09bc66ee9cd44796a280553f532275a83748 (patch)
tree9ab05497a51f2769e48c5f1a0ba459158b3f4259 /anaconda
parent5ea1b95d6bf4862734afb14fedbcfe05cdd86a22 (diff)
downloadanaconda-d64c09bc66ee9cd44796a280553f532275a83748.tar.gz
anaconda-d64c09bc66ee9cd44796a280553f532275a83748.tar.xz
anaconda-d64c09bc66ee9cd44796a280553f532275a83748.zip
Fix conditional
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda2
1 files changed, 1 insertions, 1 deletions
diff --git a/anaconda b/anaconda
index d8d0edd62..f5c320c14 100755
--- a/anaconda
+++ b/anaconda
@@ -1075,7 +1075,7 @@ if method:
if method.startswith('cdrom://'):
from image import CdromInstallMethod
methodobj = CdromInstallMethod(method, rootPath, intf)
- if method.startswith('nfs:/'):
+ elif method.startswith('nfs:/'):
from image import NfsInstallMethod
methodobj = NfsInstallMethod(method, rootPath, intf)
elif method.startswith('nfsiso:/'):