diff options
Diffstat (limited to 'gui.py')
-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, '/') |