diff options
| author | Julian Andres Klode <jak@debian.org> | 2010-03-08 16:33:23 +0100 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2010-03-08 16:33:23 +0100 |
| commit | 5dcb4f67ca94d79f05cbd0940bbb5a7796a05bca (patch) | |
| tree | 45bab048925dd0b460d4d66dc557f908a1bf1dc3 /utils | |
| parent | 87634e1309c3f413be5246bfd78d0ad3765c5da6 (diff) | |
| download | python-apt-5dcb4f67ca94d79f05cbd0940bbb5a7796a05bca.tar.gz | |
* utils/get_ubuntu_mirrors_from_lp.py:
- Sort the mirror list of each country.
Diffstat (limited to 'utils')
| -rwxr-xr-x | utils/get_ubuntu_mirrors_from_lp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/get_ubuntu_mirrors_from_lp.py b/utils/get_ubuntu_mirrors_from_lp.py index 3c183b6d..341dba8a 100755 --- a/utils/get_ubuntu_mirrors_from_lp.py +++ b/utils/get_ubuntu_mirrors_from_lp.py @@ -44,4 +44,4 @@ keys = countries.keys() keys.sort() for country in keys: print "#LOC:%s" % country - print "\n".join(countries[country]) + print "\n".join(sorted(countries[country])) |
