summaryrefslogtreecommitdiffstats
path: root/todo.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-23 16:34:28 +0000
committerMatt Wilson <msw@redhat.com>1999-09-23 16:34:28 +0000
commitad463538160eb7593c15c38dec4c4c6e9b9c68fc (patch)
treecfb7671c2893d3641e4edbe0a5151872415d6e1b /todo.py
parent0e469f26dec43f9d970d8551e2f94af5cfe863ae (diff)
downloadanaconda-ad463538160eb7593c15c38dec4c4c6e9b9c68fc.tar.gz
anaconda-ad463538160eb7593c15c38dec4c4c6e9b9c68fc.tar.xz
anaconda-ad463538160eb7593c15c38dec4c4c6e9b9c68fc.zip
xasync reply fix
Diffstat (limited to 'todo.py')
-rw-r--r--todo.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/todo.py b/todo.py
index 8de1020c5..9fbb8d741 100644
--- a/todo.py
+++ b/todo.py
@@ -591,9 +591,6 @@ class ToDo:
if not format: continue
isys.makeDevInode(device, '/tmp/' + device)
if fsystem == "ext2" and createFs:
- w = self.intf.waitWindow(_("Formatting"),
- _("Formatting %s filesystem...") % (mntpoint,))
-
args = [ "mke2fs", '/tmp/' + device ]
# set up raid options for md devices.
if device[:2] == 'md':
@@ -610,6 +607,9 @@ class ToDo:
if self.badBlockCheck:
args.append ("-c")
+ w = self.intf.waitWindow(_("Formatting"),
+ _("Formatting %s filesystem...") % (mntpoint,))
+
iutil.execWithRedirect ("/usr/sbin/mke2fs",
args,
stdout = "/dev/tty5", stderr = "/dev/tty5",