Bug 23313

Summary: typo in line 168 of kickstart.py
Product: [Retired] Red Hat Linux Reporter: broman <andrew.f.broman>
Component: anacondaAssignee: Michael Fulbright <msf>
Status: CLOSED RAWHIDE QA Contact: Brock Organ <borgan>
Severity: medium Docs Contact:
Priority: medium    
Version: 7.0CC: dr
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2001-01-09 22:53:02 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description broman 2001-01-04 14:48:40 UTC
Line 168 of kickstart.py refers to a nonexistent function, isys.hardDriveList():
     drives = isys.hardDriveList ().keys()

This should instead be isys.hardDriveDict():
     drives = isys.hardDriveDict().keys()

Refer to lines 27-28 in raidstart-stub for a correct call.

Comment 1 Michael Fulbright 2001-01-09 22:52:57 UTC
Thanks patching now.