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__':