summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-08-13 19:29:30 +0000
committerJeremy Katz <katzj@redhat.com>2007-08-13 19:29:30 +0000
commit8c622f2a5f62bc9654c58d3e5c69c29aa79cfcf7 (patch)
treeac26af926c7835e7c05f19845a3575d75dab0fa8
parent0b52379fa65dbf91b2dde37088b1e9e821ff1cd0 (diff)
downloadanaconda-8c622f2a5f62bc9654c58d3e5c69c29aa79cfcf7.tar.gz
anaconda-8c622f2a5f62bc9654c58d3e5c69c29aa79cfcf7.tar.xz
anaconda-8c622f2a5f62bc9654c58d3e5c69c29aa79cfcf7.zip
AnacondaCallback doesn't use method anymore
-rw-r--r--ChangeLog3
-rw-r--r--yuminstall.py5
2 files changed, 4 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 0c7d5b1d8..d978c7181 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,8 @@
2007-08-13 Jeremy Katz <katzj@redhat.com>
* yuminstall.py (AnacondaCallback): Remove without using the
- installmethod's unlinkFilename
+ installmethod's unlinkFilename.
+ (AnacondaCallback) No longer takes method arg
* image.py (unlinkFilename): Remove method
* installmethod.py (unlinkFilename): Remove
* urlinstall.py (unlinkFilename): Remove
diff --git a/yuminstall.py b/yuminstall.py
index 87d009afe..e1342d2ff 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -70,8 +70,7 @@ def size_string (size):
class AnacondaCallback:
- def __init__(self, ayum, anaconda, method, instLog, modeText):
- self.method = method
+ def __init__(self, ayum, anaconda, instLog, modeText):
self.repos = ayum.repos
self.ts = ayum.ts
self.ayum = ayum
@@ -1260,7 +1259,7 @@ class YumBackend(AnacondaBackend):
rpm.addMacro("__dbi_htconfig",
"hash nofsync %{__dbi_other} %{__dbi_perms}")
- cb = AnacondaCallback(self.ayum, anaconda, self.method,
+ cb = AnacondaCallback(self.ayum, anaconda,
self.instLog, self.modeText)
cb.setSizes(len(self.dlpkgs), self.totalSize, self.totalFiles)