diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-13 19:42:34 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-13 19:42:34 +0000 |
commit | be941cea7f73c2b1a920dd3048a92ab2c642595c (patch) | |
tree | 07221d8c2e8a26c7a9ac3b18a541c007b0c37e6d | |
parent | 349fed2ac65b41a53deaf4d8f1d6cdededaad85a (diff) | |
download | anaconda-be941cea7f73c2b1a920dd3048a92ab2c642595c.tar.gz anaconda-be941cea7f73c2b1a920dd3048a92ab2c642595c.tar.xz anaconda-be941cea7f73c2b1a920dd3048a92ab2c642595c.zip |
fixed
-rw-r--r-- | textw/partitioning.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/partitioning.py b/textw/partitioning.py index c6eb05a60..e40f7153b 100644 --- a/textw/partitioning.py +++ b/textw/partitioning.py @@ -69,7 +69,7 @@ class ManualPartitionWindow: path = "/sbin/fdisk" else: path = "/usr/sbin/fdisk" - iutil.execWithRedirect (path, [ "/tmp/" + device ]) + iutil.execWithRedirect (path, [ path, "/tmp/" + device ]) screen.resume () if button == "back": |