Remove debug output in check_trans.py.

This commit is contained in:
Valentin Lorentz 2014-01-22 07:46:11 +01:00
parent 99a734323f
commit 9f96f4f4c9
1 changed files with 0 additions and 1 deletions

View File

@ -69,7 +69,6 @@ def checkTranslation(pot, po):
pot = set(map(operator.itemgetter(0), parse(pot)))
po = set(map(operator.itemgetter(0), parse(po)))
diff = filter(lambda x:x not in po, pot)
print(diff)
return not bool(diff)
if __name__ == '__main__':