diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-09-16 15:35:08 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-09-16 15:35:08 +0000 |
commit | ef8d32feb8a8b5a9283c68c7060faaa3adc70952 (patch) | |
tree | 56f93c8f1481986e93271ac11740a05959ed6e82 | |
parent | d9314f0e75d287319cb072d7c08155039e71d7e2 (diff) | |
download | anaconda-ef8d32feb8a8b5a9283c68c7060faaa3adc70952.tar.gz anaconda-ef8d32feb8a8b5a9283c68c7060faaa3adc70952.tar.xz anaconda-ef8d32feb8a8b5a9283c68c7060faaa3adc70952.zip |
wwpn is name, not number (#131804)
-rw-r--r-- | zfcp.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ from rhpl.log import log class ZFCP: def __init__(self): - self.description = _("zSeries machines can access industry-standard SCSI devices via Fibre Channel (FCP). You need to provide 5 parameters for each device: a 16 bit device number, a 16bit SCSI ID, a 64 bit World Wide Port Number (WWPN), a 16bit SCSI LUN and a 64 bit FCP LUN.") + self.description = _("zSeries machines can access industry-standard SCSI devices via Fibre Channel (FCP). You need to provide 5 parameters for each device: a 16 bit device number, a 16bit SCSI ID, a 64 bit World Wide Port Name (WWPN), a 16bit SCSI LUN and a 64 bit FCP LUN.") self.options = [ (_("Device number"), 1, _("You have not specified a device number or the number is invalid"), |