diff options
author | Chris Lumens <clumens@redhat.com> | 2007-06-04 14:03:07 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2007-06-04 14:03:07 +0000 |
commit | 2060e3fa074fb604abdf91a475ac3eca7fa18fe5 (patch) | |
tree | 54d71f178f4b8c3c2a55402baa2289c2ed02a484 | |
parent | 485c4a30405704f8209b26c626c65657c795787d (diff) | |
download | anaconda-2060e3fa074fb604abdf91a475ac3eca7fa18fe5.tar.gz anaconda-2060e3fa074fb604abdf91a475ac3eca7fa18fe5.tar.xz anaconda-2060e3fa074fb604abdf91a475ac3eca7fa18fe5.zip |
portal -> self.portal (#242379).
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | iscsi.py | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2007-06-04 Chris Lumens <clumens@redhat.com> + + * iscsi.py (iscsiTarget.login): portal -> self.portal (#242379). + 2007-06-01 David Cantrell <dcantrell@redhat.com> * zfcp.py (ZFCPDevice): We need to echo 1 to online for each LUN @@ -114,9 +114,9 @@ class iscsiTarget: ret = False for node in self.nodes: - if _login(node, portal): + if _login(node, self.portal): ret = True - _autostart(node, portal) + _autostart(node, self.portal) # we return True if there were any successful logins for our portal. return ret |