fdroiddata/tools/check-metadata-summary-whitespace.py
Hans-Christoph Steiner 83231f0bf7 standardize whitespace on localizable text files
This makes things work better when syncing with Weblate
2019-02-27 23:28:09 +01:00

18 lines
347 B
Python
Executable file

#!/usr/bin/env python3
import glob
import os
os.chdir(os.path.dirname(__file__) + '/../')
for f in glob.glob('metadata/*/*/*.txt'):
if os.path.getsize(f) == 0:
os.remove(f)
continue
with open(f) as fp:
data = fp.read()
with open(f, 'w') as fp:
fp.write(data.strip().rstrip())
fp.write('\n')