diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-13 19:50:09 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-13 19:50:09 +0000 |
commit | 1bff4aa8f9de6dacb4672411d09b8dc87f651e9b (patch) | |
tree | 5ff30c427093949a21e409bcddf3e9266566c0c8 | |
parent | be941cea7f73c2b1a920dd3048a92ab2c642595c (diff) | |
download | anaconda-1bff4aa8f9de6dacb4672411d09b8dc87f651e9b.tar.gz anaconda-1bff4aa8f9de6dacb4672411d09b8dc87f651e9b.tar.xz anaconda-1bff4aa8f9de6dacb4672411d09b8dc87f651e9b.zip |
really fixed.
-rw-r--r-- | textw/partitioning.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/textw/partitioning.py b/textw/partitioning.py index e40f7153b..2def76a9d 100644 --- a/textw/partitioning.py +++ b/textw/partitioning.py @@ -69,7 +69,14 @@ class ManualPartitionWindow: path = "/sbin/fdisk" else: path = "/usr/sbin/fdisk" + + try: + isys.makeDevInode(device, '/tmp/' + device) + except: + # XXX FIXME + pass iutil.execWithRedirect (path, [ path, "/tmp/" + device ]) + os.remove ('/tmp/' + device) screen.resume () if button == "back": |