summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-05-03 22:06:13 +0000
committerChris Lumens <clumens@redhat.com>2006-05-03 22:06:13 +0000
commit368e9f053bc63a678b23460fa52f1e40093609ef (patch)
tree37ceda9808189a1077051c8a7d8b662506b34dd0 /anaconda
parentbab1c12084c306f4f97c5411933950b93581baee (diff)
downloadanaconda-368e9f053bc63a678b23460fa52f1e40093609ef.tar.gz
anaconda-368e9f053bc63a678b23460fa52f1e40093609ef.tar.xz
anaconda-368e9f053bc63a678b23460fa52f1e40093609ef.zip
Start to use the anaconda class instead of passing around references to
lots of other objects.
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda3
1 files changed, 1 insertions, 2 deletions
diff --git a/anaconda b/anaconda
index 44cf3caa5..23fdc065e 100755
--- a/anaconda
+++ b/anaconda
@@ -546,12 +546,11 @@ class Anaconda:
self.methodstr = None
self.backend = None
self.rootPath = None
- self.instPath = None
self.dispatch = None
self.isKickstart = False
def setDispatch(self):
- self.dispatch = dispatch.Dispatcher(self.intf, self.id, self.method, self.rootPath, self.backend)
+ self.dispatch = dispatch.Dispatcher(self)
def setMethod(self):
if self.methodstr.startswith('cdrom://'):