Titan/webapp/bin/tr_compile.py

8 lines
197 B
Python
Raw Permalink Normal View History

2017-11-16 04:37:21 +01:00
#!/usr/bin/python3
import os
import sys
if sys.platform == 'win32':
pybabel = 'flask\\Scripts\\pybabel'
else:
pybabel = 'pybabel'
os.system(pybabel + ' compile -d titanembeds/translations')