diff options
author | Chris Lumens <clumens@redhat.com> | 2008-07-16 10:37:13 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2008-07-16 10:37:13 -0400 |
commit | 14a3eba0ab9a0942260780c6ed1b6441207899ba (patch) | |
tree | a9738f8e5d3bd9c6e4ce6c9be77532b585a00911 /iw/task_gui.py | |
parent | c2b8b64b0f80a57c76648a8130e5e147d112f72f (diff) | |
download | anaconda-14a3eba0ab9a0942260780c6ed1b6441207899ba.tar.gz anaconda-14a3eba0ab9a0942260780c6ed1b6441207899ba.tar.xz anaconda-14a3eba0ab9a0942260780c6ed1b6441207899ba.zip |
baseurl should be a list, mirrorlist should not.
Diffstat (limited to 'iw/task_gui.py')
-rw-r--r-- | iw/task_gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/task_gui.py b/iw/task_gui.py index 8b7f5893d..d8d0e2eb9 100644 --- a/iw/task_gui.py +++ b/iw/task_gui.py @@ -221,9 +221,9 @@ class RepoEditor: return False if self.mirrorlistCheckbox.get_active(): - repo.mirrorlist = [repourl] + repo.mirrorlist = repourl else: - repo.baseurl = repourl + repo.baseurl = [repourl] repo.name = self.nameEntry.get_text() repo.basecachedir = self.backend.ayum.conf.cachedir |