diff options
author | Matt Wilson <msw@redhat.com> | 2002-02-02 20:31:12 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2002-02-02 20:31:12 +0000 |
commit | 4be3dc1725deb07e53e7b80a33d6a3cef970bc9c (patch) | |
tree | f72348fdc13df6cd8581e146e5bbd63a52852eb1 /language.py | |
parent | 7b7827c2b58de4cc2a8a8c4a6c46d671a65172c1 (diff) | |
download | anaconda-4be3dc1725deb07e53e7b80a33d6a3cef970bc9c.tar.gz anaconda-4be3dc1725deb07e53e7b80a33d6a3cef970bc9c.tar.xz anaconda-4be3dc1725deb07e53e7b80a33d6a3cef970bc9c.zip |
copyright
Diffstat (limited to 'language.py')
-rw-r--r-- | language.py | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/language.py b/language.py index 716276657..aec31f3ff 100644 --- a/language.py +++ b/language.py @@ -1,3 +1,18 @@ +# +# language.py: install data component that stores information about both +# installer runtime language choice and installed system +# language support. +# +# Copyright 2002 Red Hat, Inc. +# +# This software may be freely redistributed under the terms of the GNU +# library public license. +# +# You should have received a copy of the GNU Library Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# + import os import string import locale @@ -127,7 +142,7 @@ class InstallTimeLanguage: newlangs = [lang] if len(lang) > 2: newlangs.append(lang[:2]) - cat.setlangs (newlangs) + cat.setlangs(newlangs) def writeKS(self, f): lang = self.getLangNick(self.getCurrent()) |