summaryrefslogtreecommitdiffstats
path: root/iw/fdisk.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-20 21:39:58 +0000
committerMatt Wilson <msw@redhat.com>1999-09-20 21:39:58 +0000
commitdcc73eb23477a3a32f6ac9c2f5e6ba819d7dae5d (patch)
tree886a2a0b582eea8f9e82c9e6abc83dec7e76fbb0 /iw/fdisk.py
parentc9bcac1e2e670b1e53532cfe8db53ac2703b42a2 (diff)
downloadanaconda-dcc73eb23477a3a32f6ac9c2f5e6ba819d7dae5d.tar.gz
anaconda-dcc73eb23477a3a32f6ac9c2f5e6ba819d7dae5d.tar.xz
anaconda-dcc73eb23477a3a32f6ac9c2f5e6ba819d7dae5d.zip
o try execv for fdisk
o hook up focus adjustments so we can keyboard navigate package groups
Diffstat (limited to 'iw/fdisk.py')
-rw-r--r--iw/fdisk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/fdisk.py b/iw/fdisk.py
index 48df14293..0876e43f1 100644
--- a/iw/fdisk.py
+++ b/iw/fdisk.py
@@ -39,7 +39,7 @@ class FDiskWindow (InstallWindow):
pass
print "running", path, '/tmp/' + drive
if zvt.forkpty() == 0:
- os.execvp (path, (path, '/tmp/' + drive))
+ os.execv (path, (path, '/tmp/' + drive))
zvt.show ()
self.windowContainer.remove (self.buttonBox)