summaryrefslogtreecommitdiffstats
path: root/fsset.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-07-30 14:05:46 -0400
committerChris Lumens <clumens@redhat.com>2008-07-30 14:05:46 -0400
commit2af2c2482e268c9340552f36d30518d4b7ae85df (patch)
treed468f5a1e25f5c0f019da4d8420b5c1f14ae0591 /fsset.py
parent345141e85543692d0bee8a4ad1726d6d43a14980 (diff)
downloadanaconda-2af2c2482e268c9340552f36d30518d4b7ae85df.tar.gz
anaconda-2af2c2482e268c9340552f36d30518d4b7ae85df.tar.xz
anaconda-2af2c2482e268c9340552f36d30518d4b7ae85df.zip
Fix mke2fs argument passing (#457285).
Diffstat (limited to 'fsset.py')
-rw-r--r--fsset.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fsset.py b/fsset.py
index bb220b72b..9b84af323 100644
--- a/fsset.py
+++ b/fsset.py
@@ -730,7 +730,7 @@ class ext3FileSystem(extFileSystem):
def __init__(self):
extFileSystem.__init__(self)
self.name = "ext3"
- self.extraFormatArgs = [ "-t ext3" ]
+ self.extraFormatArgs = [ "-t", "ext3" ]
self.partedFileSystemType = parted.file_system_type_get("ext3")
if flags.cmdline.has_key("ext4"):
self.migratetofs = ['ext4dev']