[cc-commits] [SCM] License chooser & etc (branch next) updated. 8bf23c26e17f09f4494cb65c7d93b01c0cf68571
git version control
git at a7.creativecommons.org
Mon Jul 26 13:00:24 EDT 2010
The branch, next has been updated
via 8bf23c26e17f09f4494cb65c7d93b01c0cf68571 (commit)
from 328b3275319d820e6fccee03fd2451b0efb19692 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 8bf23c26e17f09f4494cb65c7d93b01c0cf68571
Author: Christopher Allan Webber <cwebber at dustycloud.org>
Date: Mon Jul 26 12:05:42 2010 -0500
Sort latin characters in a case-insensitive manner
-----------------------------------------------------------------------
Summary of changes (followed by patch):
cc/engine/util.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/cc/engine/util.py b/cc/engine/util.py
index f7ae78e..2efa516 100644
--- a/cc/engine/util.py
+++ b/cc/engine/util.py
@@ -268,7 +268,7 @@ def active_languages():
# we have a translation for this name...
result.append(dict(code=code, name=name))
- result = sorted(result, key=lambda lang: lang['name'])
+ result = sorted(result, key=lambda lang: lang['name'].lower())
_ACTIVE_LANGUAGES = result
hooks/post-receive
--
License chooser & etc
More information about the cc-commits
mailing list