diff options
author | Matt Wilson <msw@redhat.com> | 1999-06-24 18:48:24 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-06-24 18:48:24 +0000 |
commit | 336d06119844ada6bf2a2a67bca5da0d5b363c32 (patch) | |
tree | 429730a59bb2fed13c6298a49510ac88858153be /text.py | |
parent | 8f5b86b5ba7263bd79372f6f15c05571367555de (diff) | |
download | anaconda-336d06119844ada6bf2a2a67bca5da0d5b363c32.tar.gz anaconda-336d06119844ada6bf2a2a67bca5da0d5b363c32.tar.xz anaconda-336d06119844ada6bf2a2a67bca5da0d5b363c32.zip |
changed hello text in init
more changes to break the device from the node path
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -50,8 +50,9 @@ class PartitionWindow: device = 'hda'; isys.makeDevInode(device, '/tmp/' + device) - table = _balkan.readTable('/tmp/' + device) + os.remove('/tmp/' + device) + partList = [] for i in range(0, len(table) - 1): (type, start, size) = table[i] |