summaryrefslogtreecommitdiffstats
path: root/yuminstall.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-03-27 16:37:45 +0000
committerChris Lumens <clumens@redhat.com>2006-03-27 16:37:45 +0000
commit2893e0518ffd16174bc32566596a0305ef1437f7 (patch)
tree0a27701ed4b1871a6ce2a26d9cd154c819e21421 /yuminstall.py
parent0d568c87b23f264ae349d3dfc487193eff33ceff (diff)
downloadanaconda-2893e0518ffd16174bc32566596a0305ef1437f7.tar.gz
anaconda-2893e0518ffd16174bc32566596a0305ef1437f7.tar.xz
anaconda-2893e0518ffd16174bc32566596a0305ef1437f7.zip
Pass in timer (#186761).
Diffstat (limited to 'yuminstall.py')
-rw-r--r--yuminstall.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/yuminstall.py b/yuminstall.py
index 5a15adca0..b39272554 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -132,7 +132,7 @@ class simpleCallback:
while self.fdnos[nvra] < 0:
try:
- fn = self.method.getRPMFilename(os.path.basename(path), getcd(po), None)
+ fn = self.method.getRPMFilename(os.path.basename(path), getcd(po), self.pkgTimer)
except FileCopyException, e:
log.info("Failed %s in %s" %(path, po.returnSimple('name')))
self.method.unmountCD()
@@ -188,7 +188,7 @@ class simpleCallback:
hdr = po.returnLocalHeader()
path = po.returnSimple('relativepath')
- fn = self.method.getRPMFilename(os.path.basename(path), getcd(po), None)
+ fn = self.method.getRPMFilename(os.path.basename(path), getcd(po), self.pkgTimer)
nvra = po.returnNevraPrintable()
os.close(self.fdnos[nvra])