diff options
author | Mike Fulbright <msf@redhat.com> | 2003-05-02 18:38:52 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2003-05-02 18:38:52 +0000 |
commit | 0010a746eb01e62f89467f23649c67632f76c5c5 (patch) | |
tree | b4abdf0861573bd57821a89788347223b49f6e68 /image.py | |
parent | 1bb315fbdb2228ca281714398b8dfde52a356953 (diff) | |
download | anaconda-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.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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]) |