summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--installclass.py1
-rw-r--r--security.py1
-rw-r--r--yuminstall.py2
3 files changed, 1 insertions, 3 deletions
diff --git a/installclass.py b/installclass.py
index b99a091e7..c36e9e9bf 100644
--- a/installclass.py
+++ b/installclass.py
@@ -106,7 +106,6 @@ class BaseInstallClass(object):
"partitiondone",
"bootloadersetup",
"bootloader",
- "networkdevicecheck",
"network",
"timezone",
"accounts",
diff --git a/security.py b/security.py
index 7a76364a5..c78428782 100644
--- a/security.py
+++ b/security.py
@@ -19,7 +19,6 @@
# Author(s): Jeremy Katz <katzj@redhat.com>
#
-import os, string
import iutil
from flags import flags
from pykickstart.constants import *
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