diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-01-12 19:44:14 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-01-12 19:44:14 +0000 |
commit | c49707b3142a9b56632de9a15f03e2c14fc43039 (patch) | |
tree | ee8aaeb8e0c7ccb1822eddda6e1825663598494a | |
parent | f55a10a64c232b9b6aac60d6907623926ed8af6f (diff) | |
download | anaconda-c49707b3142a9b56632de9a15f03e2c14fc43039.tar.gz anaconda-c49707b3142a9b56632de9a15f03e2c14fc43039.tar.xz anaconda-c49707b3142a9b56632de9a15f03e2c14fc43039.zip |
handle change for findExistingRoots. this code has got to be changed to be less fragile for gingin++
-rw-r--r-- | rescue.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -213,7 +213,7 @@ def runRescue(instPath, mountroot, id): scroll = 0 partList = [] - for (drive, fs) in disks: + for (drive, fs, relstr) in disks: partList.append(drive) (button, choice) = \ |