# HG changeset patch # User Daniel Hans # Date 1249603593 -7200 # Node ID 5b43af491b93435e51c039826ccf89ddeed4c2bd # Parent 8f3935f0f4ba4eae36ecd00f0bb11b14cd2e9764 List of countries is actually alphabetically sorted. diff -r 8f3935f0f4ba -r 5b43af491b93 app/soc/models/countries.py --- a/app/soc/models/countries.py Fri Aug 07 01:27:24 2009 +0200 +++ b/app/soc/models/countries.py Fri Aug 07 02:06:33 2009 +0200 @@ -266,7 +266,7 @@ } # List of all countries and territories -COUNTRIES_AND_TERRITORIES = COUNTRY_INFO.keys() +COUNTRIES_AND_TERRITORIES = sorted(COUNTRY_INFO.keys()) # Mapping of countries to their CCTLD COUNTRIES_TO_CCTLD = dict((k, c) for k, (c, _) in COUNTRY_INFO.items())