Fixed a capitalization bugz0r.

This commit is contained in:
Jeremy Fincher 2004-01-26 07:50:20 +00:00
parent 1130baa68d
commit ac2b048055

View File

@ -311,7 +311,7 @@ class Group(object):
items = self.values.items()
for (name, child) in self.children.items():
if hasattr(child, 'value'):
items.append((name, child))
items.append((self.originals[name], child))
utils.sortBy(lambda (k, _): (k.lower(), len(k), k), items)
for (name, value) in items:
if fullNames: