summaryrefslogtreecommitdiff
path: root/apt/cache.py
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2005-12-22 09:21:45 +0000
committerMichael Vogt <michael.vogt@ubuntu.com>2005-12-22 09:21:45 +0000
commit9a97c512ec3e3bfd2b1df17b8ab350b79637780e (patch)
tree76f5ecb173958a33687e105de4758314a9dc4f8e /apt/cache.py
parent86878ca7de8c4b14da7e10a82b26905de80a6c98 (diff)
downloadpython-apt-9a97c512ec3e3bfd2b1df17b8ab350b79637780e.tar.gz
* removed the fetchProgress from _fetchArchives() (no longer needed)
Diffstat (limited to 'apt/cache.py')
-rw-r--r--apt/cache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/apt/cache.py b/apt/cache.py
index ed07f2c9..9a0ff96c 100644
--- a/apt/cache.py
+++ b/apt/cache.py
@@ -136,7 +136,7 @@ class Cache(object):
raise IOError, errMsg
return res
- def _fetchArchives(self, fetcher, pm, fetchProgress):
+ def _fetchArchives(self, fetcher, pm):
""" fetch the needed archives """
# get lock
@@ -195,7 +195,7 @@ class Cache(object):
fetcher = apt_pkg.GetAcquire(fetchProgress)
while True:
# fetch archives first
- res = self._fetchArchives(fetcher, pm, fetchProgress)
+ res = self._fetchArchives(fetcher, pm)
# then install
res = self.installArchives(pm, installProgress)