summaryrefslogtreecommitdiffstats
path: root/iw/zfcp_gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-10-04 19:49:24 +0000
committerJeremy Katz <katzj@redhat.com>2004-10-04 19:49:24 +0000
commitad71a06440f9344b37731e910d5ccd81e08afc30 (patch)
tree7a506203bdb8b3341ce29dd0228789b1edde1feb /iw/zfcp_gui.py
parentf7458d2792bab4eda54061749cef2c77ad38e1f0 (diff)
downloadanaconda-ad71a06440f9344b37731e910d5ccd81e08afc30.tar.gz
anaconda-ad71a06440f9344b37731e910d5ccd81e08afc30.tar.xz
anaconda-ad71a06440f9344b37731e910d5ccd81e08afc30.zip
2004-10-04 Jeremy Katz <katzj@redhat.com>
* iw/zfcp_gui.py: Fix zfcp help tag (ZFCPWindow.getScreen): Don't change fcp devs until going forward.
Diffstat (limited to 'iw/zfcp_gui.py')
-rw-r--r--iw/zfcp_gui.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/iw/zfcp_gui.py b/iw/zfcp_gui.py
index e1db12193..947434917 100644
--- a/iw/zfcp_gui.py
+++ b/iw/zfcp_gui.py
@@ -17,6 +17,7 @@ import gobject
from iw_gui import *
import gui
from rhpl.translate import _, N_
+import copy
class ZFCPWindow(InstallWindow):
@@ -28,6 +29,7 @@ class ZFCPWindow(InstallWindow):
def getNext(self):
self.fcp.updateConfig(self.fcpdevices, self.diskset, self.intf)
+ self.fcp.fcpdevices = self.fcpdevices
def setupDevices(self):
def sortFcpDevs(one, two):
@@ -76,7 +78,7 @@ class ZFCPWindow(InstallWindow):
box.set_border_width(6)
fcp.cleanFcpSysfs(fcp.fcpdevices)
self.fcp = fcp
- self.fcpdevices = fcp.fcpdevices
+ self.fcpdevices = copy.copy(fcp.fcpdevices)
devvbox = gtk.VBox(gtk.FALSE)
@@ -114,7 +116,6 @@ class ZFCPWindow(InstallWindow):
box.pack_start(frame, gtk.FALSE)
return box
-
def addDevice(self, data):
if self.ignoreEvents:
return