diff options
author | Barry Warsaw <barry@python.org> | 1998-12-05 21:15:41 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1998-12-05 21:15:41 (GMT) |
commit | 93ec4cc6f492c57a766a76dc7c8b5fd78085b84a (patch) | |
tree | a962c986f198132b1f69822ccb126ac6949ba79e /Tools/world | |
parent | e039439e3bb91fec32cc161018e40aaf27bf0211 (diff) | |
download | cpython-93ec4cc6f492c57a766a76dc7c8b5fd78085b84a.zip cpython-93ec4cc6f492c57a766a76dc7c8b5fd78085b84a.tar.gz cpython-93ec4cc6f492c57a766a76dc7c8b5fd78085b84a.tar.bz2 |
Fixed typos in --dump
Diffstat (limited to 'Tools/world')
-rwxr-xr-x | Tools/world/world | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/world/world b/Tools/world/world index 6d85154..5d5759e 100755 --- a/Tools/world/world +++ b/Tools/world/world @@ -239,16 +239,16 @@ def main(): if dump: print 'Non-geographic domains:' - codes = nameorg.keys() + codes = nameorgs.keys() codes.sort() for code in codes: - print ' %4s:' % code, nameorg[code] + print ' %4s:' % code, nameorgs[code] print '\nCountry coded domains:' - codes = country.keys() + codes = countries.keys() codes.sort() for code in codes: - print ' %2s:' % code, country[code] + print ' %2s:' % code, countries[code] elif parsefile: parse(parsefile, normalize) else: |