Kaydet (Commit) 93ec4cc6 authored tarafından Barry Warsaw's avatar Barry Warsaw

Fixed typos in --dump

üst e039439e
...@@ -239,16 +239,16 @@ def main(): ...@@ -239,16 +239,16 @@ def main():
if dump: if dump:
print 'Non-geographic domains:' print 'Non-geographic domains:'
codes = nameorg.keys() codes = nameorgs.keys()
codes.sort() codes.sort()
for code in codes: for code in codes:
print ' %4s:' % code, nameorg[code] print ' %4s:' % code, nameorgs[code]
print '\nCountry coded domains:' print '\nCountry coded domains:'
codes = country.keys() codes = countries.keys()
codes.sort() codes.sort()
for code in codes: for code in codes:
print ' %2s:' % code, country[code] print ' %2s:' % code, countries[code]
elif parsefile: elif parsefile:
parse(parsefile, normalize) parse(parsefile, normalize)
else: else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment