summaryrefslogtreecommitdiffstats
path: root/pyanaconda/installclass.py
diff options
context:
space:
mode:
authorAles Kozumplik <akozumpl@redhat.com>2011-01-18 17:59:24 +0100
committerAles Kozumplik <akozumpl@redhat.com>2011-02-21 10:00:55 +0100
commit27891b070c92788907dc2cb91a0c84a6e79dbd30 (patch)
tree39bcaaa1106e82e0e18515fa9de9daafff3958fa /pyanaconda/installclass.py
parent1359ee5e8833a6db8ace496cf552a63e3d490fc8 (diff)
downloadanaconda-27891b070c92788907dc2cb91a0c84a6e79dbd30.tar.gz
anaconda-27891b070c92788907dc2cb91a0c84a6e79dbd30.tar.xz
anaconda-27891b070c92788907dc2cb91a0c84a6e79dbd30.zip
remove trailing whitespace from gui.py and installclass.py
Diffstat (limited to 'pyanaconda/installclass.py')
-rw-r--r--pyanaconda/installclass.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/pyanaconda/installclass.py b/pyanaconda/installclass.py
index 8bc2e53e5..385757e31 100644
--- a/pyanaconda/installclass.py
+++ b/pyanaconda/installclass.py
@@ -88,14 +88,14 @@ class BaseInstallClass(object):
"autopartitionexecute",
"partition",
"storagedone",
- "bootloadersetup",
+ "bootloadersetup",
"bootloader",
"network",
"timezone",
"accounts",
"reposetup",
"basepkgsel",
- "tasksel",
+ "tasksel",
"postselection",
"reipl",
"install",
@@ -127,7 +127,7 @@ class BaseInstallClass(object):
dispatch.skipStep("tasksel", skip = 1, permanent=1)
dispatch.skipStep("group-selection", skip = 1, permanent=1)
- # allow install classes to turn off the upgrade
+ # allow install classes to turn off the upgrade
if not self.showUpgrade or not anaconda.backend.supportsUpgrades:
dispatch.skipStep("findrootparts", skip = 1)
@@ -136,7 +136,7 @@ class BaseInstallClass(object):
if flags.cmdline.has_key("noupgrade"):
dispatch.skipStep("findrootparts", skip = 1)
- # upgrade will also always force looking for an upgrade.
+ # upgrade will also always force looking for an upgrade.
if flags.cmdline.has_key("upgrade"):
dispatch.skipStep("findrootparts", skip = 0)
@@ -145,7 +145,7 @@ class BaseInstallClass(object):
# modifies the uri from installmethod.getMethodUri() to take into
# account any installclass specific things including multiple base
- # repositories. takes a string or list of strings, returns a dict
+ # repositories. takes a string or list of strings, returns a dict
# with string keys and list values {%repo: %uri_list}
def getPackagePaths(self, uri):
if not type(uri) == types.ListType:
@@ -276,7 +276,7 @@ def availableClasses(showHidden=0):
if obj.__dict__.has_key('arch'):
if obj.arch != iutil.getArch():
obj.hidden = 1
-
+
if obj.hidden == 0 or showHidden == 1:
list.append(((obj.name, obj, obj.pixmap), sortOrder))
except ImportError as e: