summaryrefslogtreecommitdiffstats
path: root/yuminstall.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2008-08-27 20:35:12 -1000
committerDavid Cantrell <dcantrell@redhat.com>2008-08-27 20:39:12 -1000
commit4246aad4eed0efbc317680d0ef6dd037f6d04907 (patch)
tree566f36dd7e7af9e84b912c2994f200fe258d9b4d /yuminstall.py
parent9c857b821f2e3204f92205e0538374043f17f519 (diff)
downloadanaconda-4246aad4eed0efbc317680d0ef6dd037f6d04907.tar.gz
anaconda-4246aad4eed0efbc317680d0ef6dd037f6d04907.tar.xz
anaconda-4246aad4eed0efbc317680d0ef6dd037f6d04907.zip
Fix syntax error in yuminstall.py, fix pychecker warnings.
Add missing ':' to if statement in yuminstall.py Remove 'import os,string' from security.py Remove 'networkdevicecheck' from installclass.py
Diffstat (limited to 'yuminstall.py')
-rw-r--r--yuminstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yuminstall.py b/yuminstall.py
index 74ad38ed6..9a4404aff 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -753,7 +753,7 @@ class AnacondaYum(YumSorter):
if len(mkeys) > 1:
stage2img = "%s/images/install.img" % self.tree
- if self.anaconda.backend.mountInstallImage(self.anaconda, stage2img)
+ if self.anaconda.backend.mountInstallImage(self.anaconda, stage2img):
self.anaconda.id.fsset.unmountFilesystems(self.anaconda.rootPath)
return DISPATCH_BACK