summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
Diffstat (limited to 'text.py')
-rw-r--r--text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/text.py b/text.py
index c4e9cefec..01f3c3351 100644
--- a/text.py
+++ b/text.py
@@ -9,7 +9,7 @@ partList = []
for i in range(0, len(table) - 1):
(type, start, size) = table[i]
if (type == 0x83 and size):
- fullName = '/dev/%s%d' % (device, i)
+ fullName = '/dev/%s%d' % (device, i + 1)
partList.append((fullName, fullName))
rc = ListboxChoiceWindow(screen, 'Root Partition', 'What partition would you '