summaryrefslogtreecommitdiffstats
path: root/installmethod.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2002-02-11 19:20:21 +0000
committerMatt Wilson <msw@redhat.com>2002-02-11 19:20:21 +0000
commite6ad1229ce372c4f3653b2a26bd1846d97fa04db (patch)
tree4b60a69f9af63563023fde80b7a0e5663b59c281 /installmethod.py
parent4656246e5d1272637e627b06d96c48e14b060585 (diff)
downloadanaconda-e6ad1229ce372c4f3653b2a26bd1846d97fa04db.tar.gz
anaconda-e6ad1229ce372c4f3653b2a26bd1846d97fa04db.tar.xz
anaconda-e6ad1229ce372c4f3653b2a26bd1846d97fa04db.zip
pass in the hdlist to readCompsViaMethod
Diffstat (limited to 'installmethod.py')
-rw-r--r--installmethod.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/installmethod.py b/installmethod.py
index a519c9350..b7639a2aa 100644
--- a/installmethod.py
+++ b/installmethod.py
@@ -5,7 +5,7 @@ class InstallMethod:
def protectedPartitions(self):
return None
- def readCompsViaMethod(self):
+ def readCompsViaMethod(self, hdlist):
pass
def readComps(self, hdlist):
@@ -21,7 +21,7 @@ class InstallMethod:
if path:
return ComponentSet(path, hdlist)
else:
- return self.readCompsViaMethod()
+ return self.readCompsViaMethod(hdlist)
pass
def getFilename(self, h, timer):