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())