diff options
| author | Steve Langasek <steve.langasek@canonical.com> | 2012-06-11 14:23:14 -0700 |
|---|---|---|
| committer | Steve Langasek <steve.langasek@canonical.com> | 2012-06-11 14:23:14 -0700 |
| commit | a576f0fb73d21b6da177e5ce6f2d2b36d6c591e5 (patch) | |
| tree | f025f1909317353aae091fb0d2dbeeb69f0256be | |
| parent | 3e2f47aa06ec46c582d4af7404bede4e48848829 (diff) | |
| parent | 6b2a358bb63c6b51b6a1215b047ea879046fd965 (diff) | |
| download | python-apt-a576f0fb73d21b6da177e5ce6f2d2b36d6c591e5.tar.gz | |
merge fix for use of .keys()
| -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 5f9325e4..7c4d3831 100755 --- a/utils/get_ubuntu_mirrors_from_lp.py +++ b/utils/get_ubuntu_mirrors_from_lp.py @@ -40,7 +40,7 @@ for entry in d.entries: countries[countrycode].add(link.href) -keys = sorted(countries.keys()) +keys = sorted(countries) print("mirror://mirrors.ubuntu.com/mirrors.txt") for country in keys: print("#LOC:%s" % country) |
