From 3af8b4dc7694e85d5d0217b6a250790d40795d73 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Wed, 22 Jan 2014 07:46:11 +0100 Subject: [PATCH] Remove debug output in check_trans.py. --- sandbox/check_trans.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sandbox/check_trans.py b/sandbox/check_trans.py index c0914c714..f1190839d 100755 --- a/sandbox/check_trans.py +++ b/sandbox/check_trans.py @@ -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__':