comparison scripts/msgfmt.py @ 846:72aa6ca3fddc pyntnclick

Remove stray debugging print
author Neil Muller <neil@dip.sun.ac.za>
date Wed, 30 Jan 2013 17:34:58 +0200
parents 99e1e67f3916
children
comparison
equal deleted inserted replaced
845:656d7b3f5610 846:72aa6ca3fddc
58 global total_fuzzy 58 global total_fuzzy
59 global total_untrans 59 global total_untrans
60 if not fuzzy and str: 60 if not fuzzy and str:
61 MESSAGES[id] = str 61 MESSAGES[id] = str
62 if fuzzy and str: 62 if fuzzy and str:
63 print 'fuzzy', str
64 total_fuzzy += 1 63 total_fuzzy += 1
65 elif not str: 64 elif not str:
66 total_untrans += 1 65 total_untrans += 1
67 66
68 67