ddnet/scripts/languages/find_unchanged.py
def 13a8dfa307 Add pylint
and fix occurences
2020-12-09 10:40:28 +01:00

17 lines
321 B
Python
Executable file

#!/usr/bin/env python3
import os
import sys
import twlang
os.chdir(os.path.dirname(__file__) + "/../..")
if len(sys.argv) < 2:
print("usage: python find_unchanged.py <file>")
sys.exit()
infile = sys.argv[1]
trans = twlang.translations(infile)
for tran, (_, expr, _) in trans.items():
if tran == expr:
print(tran)