From 8f5b86b5ba7263bd79372f6f15c05571367555de Mon Sep 17 00:00:00 2001 From: Matt Wilson Date: Wed, 23 Jun 1999 22:36:58 +0000 Subject: Move away from using /dev/ for device nodes - use /tmp, added path for terminfo stuff (though I think terminfo does this by default --- text.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'text.py') diff --git a/text.py b/text.py index a4bfef6b5..c35d795ec 100644 --- a/text.py +++ b/text.py @@ -56,7 +56,7 @@ class PartitionWindow: for i in range(0, len(table) - 1): (type, start, size) = table[i] if (type == 0x83 and size): - fullName = '/dev/%s%d' % (device, i + 1) + fullName = '%s%d' % (device, i + 1) partList.append((fullName, fullName)) rc = ListboxChoiceWindow(screen, 'Root Partition', @@ -120,7 +120,7 @@ class InstallInterface: dir = 1 step = step + dir - todo.liloLocation("/dev/hda") + todo.liloLocation("hda") def killSelf(screen): print "HERE" -- cgit