summaryrefslogtreecommitdiffstats
path: root/urlinstall.py
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@redhat.com>2005-11-15 02:43:34 +0000
committerPaul Nasrat <pnasrat@redhat.com>2005-11-15 02:43:34 +0000
commitc7f542f61836d6a79837bb3a38ba93793d99e1ba (patch)
tree6d1f83e60d564c4d1487e28f8ad751667a0037ef /urlinstall.py
parent95e2b35eb224d50525d17756f3e59b1b3179f1b5 (diff)
downloadanaconda-c7f542f61836d6a79837bb3a38ba93793d99e1ba.tar.gz
anaconda-c7f542f61836d6a79837bb3a38ba93793d99e1ba.tar.xz
anaconda-c7f542f61836d6a79837bb3a38ba93793d99e1ba.zip
Change getRPMFileName signature, use in callback
Diffstat (limited to 'urlinstall.py')
-rw-r--r--urlinstall.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/urlinstall.py b/urlinstall.py
index 9b0e3f987..923fa8862 100644
--- a/urlinstall.py
+++ b/urlinstall.py
@@ -119,9 +119,9 @@ class UrlInstallMethod(InstallMethod):
return file
- def getRPMFilename(self, h, timer, callback=None):
+ def getRPMFilename(self, filename, h, timer, callback=None):
- fullPath = "/%s/RPMS/%s" % (productPath, h[FILENAME])
+ fullPath = "/%s/RPMS/%s" % (productPath, filename)
return self.getFilename(fullPath, callback=callback, disc = h[DISCNUM])