summaryrefslogtreecommitdiffstats
path: root/image.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-05-02 18:38:52 +0000
committerMike Fulbright <msf@redhat.com>2003-05-02 18:38:52 +0000
commit0010a746eb01e62f89467f23649c67632f76c5c5 (patch)
treeb4abdf0861573bd57821a89788347223b49f6e68 /image.py
parent1bb315fbdb2228ca281714398b8dfde52a356953 (diff)
downloadanaconda-0010a746eb01e62f89467f23649c67632f76c5c5.tar.gz
anaconda-0010a746eb01e62f89467f23649c67632f76c5c5.tar.xz
anaconda-0010a746eb01e62f89467f23649c67632f76c5c5.zip
need extra args for callback (unused in these cases)
Diffstat (limited to 'image.py')
-rw-r--r--image.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/image.py b/image.py
index 483f3742f..8807573d0 100644
--- a/image.py
+++ b/image.py
@@ -120,7 +120,7 @@ class CdromInstallMethod(ImageInstallMethod):
isys.makeDevInode("loop0", "/tmp/loop")
isys.lochangefd("/tmp/loop", self.loopbackFile)
- def getFilename(self, h, timer):
+ def getFilename(self, h, timer, callback=None):
if h[1000002] == None:
log ("header for %s has no disc location tag, assuming it's"
"on the current CD", h[1000000])
@@ -406,7 +406,7 @@ def findIsoImages(path, messageWindow):
return discImages
class NfsIsoInstallMethod(NfsInstallMethod):
- def getFilename(self, h, timer):
+ def getFilename(self, h, timer, callback=None):
if self.imageMounted != h[1000002]:
self.umountImage()
self.mountImage(h[1000002])