diff options
author | Chantry Xavier <shiningxc@gmail.com> | 2008-03-13 16:36:44 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-03-17 20:58:28 -0500 |
commit | b3e6cf652c9e989badaf5499abb1d64c1a110927 (patch) | |
tree | 850b1c05d910c2f1fec65e19ebc87fbf9eb2f246 /pactest/util.py | |
parent | dae3f9deefdb86f726a68dc89a7391e9df7517df (diff) | |
download | pacman-b3e6cf652c9e989badaf5499abb1d64c1a110927.tar.xz |
Drop case insensitive comparisons in the config parsing.
These case insensitive comparisons didn't work in some locales, like tr_TR
where upper(i) != I. So a second case sensitive comparison had to be made
for each directive.
Only keeping case sensitive comparisons make the code cleaner and treat all
locales equally.
Ref: http://www.archlinux.org/pipermail/pacman-dev/2008-March/011445.html
Also fix pactests to use the correct case.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'pactest/util.py')
-rwxr-xr-x | pactest/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pactest/util.py b/pactest/util.py index 2a6ff4e7..3f0b096a 100755 --- a/pactest/util.py +++ b/pactest/util.py @@ -181,7 +181,7 @@ def mkcfgfile(filename, root, option, db): # Repositories data.extend(["[%s]\n" \ - "server = file://%s\n" \ + "Server = file://%s\n" \ % (value.treename, \ os.path.join(root, SYNCREPO, value.treename)) \ for key, value in db.iteritems() if key != "local"]) |