diff options
author | Matt Wilson <msw@redhat.com> | 1999-06-28 02:14:28 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-06-28 02:14:28 +0000 |
commit | c94bb405f0972d1bd261ccdcbed19f3ed06706a8 (patch) | |
tree | 46eaead50b6b1c1ca719665c144870edbfb8ae8b | |
parent | 1d79dcae7fddc955986b79d82972473949401083 (diff) | |
download | anaconda-c94bb405f0972d1bd261ccdcbed19f3ed06706a8.tar.gz anaconda-c94bb405f0972d1bd261ccdcbed19f3ed06706a8.tar.xz anaconda-c94bb405f0972d1bd261ccdcbed19f3ed06706a8.zip |
take off leading /dev
-rwxr-xr-x | gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -132,7 +132,7 @@ class PartitionWindow: rootpart = "" for i in range(0, numext2): if buttons[i].active: - rootpart = "/dev/%s%d" % (device, i + 1) + rootpart = "%s%d" % (device, i + 1) todo.addMount(rootpart, '/') |