summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-06-28 02:14:28 +0000
committerMatt Wilson <msw@redhat.com>1999-06-28 02:14:28 +0000
commitc94bb405f0972d1bd261ccdcbed19f3ed06706a8 (patch)
tree46eaead50b6b1c1ca719665c144870edbfb8ae8b /gui.py
parent1d79dcae7fddc955986b79d82972473949401083 (diff)
downloadanaconda-c94bb405f0972d1bd261ccdcbed19f3ed06706a8.tar.gz
anaconda-c94bb405f0972d1bd261ccdcbed19f3ed06706a8.tar.xz
anaconda-c94bb405f0972d1bd261ccdcbed19f3ed06706a8.zip
take off leading /dev
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui.py b/gui.py
index 554bcc66d..3b54f3a2a 100755
--- a/gui.py
+++ b/gui.py
@@ -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, '/')