diff options
author | Matt Wilson <msw@redhat.com> | 1999-06-23 21:59:35 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-06-23 21:59:35 +0000 |
commit | d15d17b2cb0d6b9861b4a3d89a9ac55a1bc682de (patch) | |
tree | d1465ebd302c0b5fdf0c4e58231bc222b41aedf6 /text.py | |
parent | 925e1cc74e2871f47234d7494e823bcd29c60121 (diff) | |
download | anaconda-d15d17b2cb0d6b9861b4a3d89a9ac55a1bc682de.tar.gz anaconda-d15d17b2cb0d6b9861b4a3d89a9ac55a1bc682de.tar.xz anaconda-d15d17b2cb0d6b9861b4a3d89a9ac55a1bc682de.zip |
fixups
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,7 @@ from snack import * import _balkan import sys +import isys class WelcomeWindow: def run(self, screen): @@ -48,7 +49,9 @@ class PartitionWindow: device = 'hda'; - table = _balkan.readTable('/dev/' + device) + isys.mkdevinode(device, '/tmp/' + device) + + table = _balkan.readTable('/tmp/' + device) partList = [] for i in range(0, len(table) - 1): (type, start, size) = table[i] |