summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-10-10 16:23:39 +0000
committerChris Lumens <clumens@redhat.com>2006-10-10 16:23:39 +0000
commit721d3e2f0887fd2815dd975921636c3593d7b206 (patch)
tree69ac7c8d155f50bd7fbb7ec383328bfd991000e2
parent095107cdfcde724d7a3dd52121e394a12d2e3911 (diff)
downloadanaconda-721d3e2f0887fd2815dd975921636c3593d7b206.tar.gz
anaconda-721d3e2f0887fd2815dd975921636c3593d7b206.tar.xz
anaconda-721d3e2f0887fd2815dd975921636c3593d7b206.zip
Allow setting the system language to something other than what's in lang-table,
as the kickstart documentation says is allowed (#176538).
-rw-r--r--ChangeLog6
-rw-r--r--yuminstall.py12
2 files changed, 12 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index e474de527..91476bc1b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-10-10 Chris Lumens <clumens@redhat.com>
+
+ * language.py (Language.setRuntimeLanguage): Allow setting the system
+ language to something other than what's in lang-table, as the
+ kickstart documentation says is allowed (#176538).
+
2006-10-09 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
diff --git a/yuminstall.py b/yuminstall.py
index 531ca1e1b..ecbe342b9 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -195,12 +195,12 @@ class AnacondaYumRepo(YumRepository):
remote = package.returnSimple('relativepath')
local = package.localPkg()
- return self.__get(relative=remote,
- local=local,
- checkfunc=checkfunc,
- text=text,
- cache=cache
- )
+ return self._YumRepository__get(relative=remote,
+ local=local,
+ checkfunc=checkfunc,
+ text=text,
+ cache=cache
+ )
class YumSorter(yum.YumBase):