diff options
author | Chris Lumens <clumens@redhat.com> | 2006-08-29 20:32:52 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-08-29 20:32:52 +0000 |
commit | f297944f9cbbe4092d09ec49ae737d971f10869a (patch) | |
tree | a059219fd1226f1a62fc25302ba16f613df93636 /iw | |
parent | 6e6684480e69317a8bd027dbc9a7dadef7584d86 (diff) | |
download | anaconda-f297944f9cbbe4092d09ec49ae737d971f10869a.tar.gz anaconda-f297944f9cbbe4092d09ec49ae737d971f10869a.tar.xz anaconda-f297944f9cbbe4092d09ec49ae737d971f10869a.zip |
Back out the doRepoSetup interface change, as we should stick with what yum
does.
Diffstat (limited to 'iw')
-rw-r--r-- | iw/task_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/task_gui.py b/iw/task_gui.py index 26d77949e..c42405cb2 100644 --- a/iw/task_gui.py +++ b/iw/task_gui.py @@ -67,7 +67,7 @@ class TaskWindow(InstallWindow): def _setupRepo(self, repo): try: - self.backend.doRepoSetup(self.anaconda, repo, fatalerrors = False) + self.backend.doRepoSetup(self.anaconda, repo.id, fatalerrors = False) log.info("added repository %s with with source URL %s" % (repo.name, repo.baseurl[0])) except yum.Errors.RepoError, e: self.intf.messageWindow(_("Error"), |