check_trans.py: make error messages red. Closes GH-632

This commit is contained in:
Valentin Lorentz 2014-05-11 17:49:14 +00:00
parent b26c4d6a8a
commit e8637441af
1 changed files with 3 additions and 2 deletions

View File

@ -7,6 +7,7 @@ import operator
import subprocess
from supybot.i18n import parse
import supybot.ansi as ansi
def main():
directory = sys.argv[1]
@ -45,7 +46,7 @@ def _checkCore(corePath):
if checkTranslation(pot, po):
print('OK: ' + potPath)
else:
print('ERROR: ' + potPath)
print(ansi.RED + 'ERROR: ' + potPath + ansi.RESET)
@changedir
@ -62,7 +63,7 @@ def checkPlugin(pluginPath):
if checkTranslation(pot, po):
print('OK: ' + potPath)
else:
print('ERROR: ' + potPath)
print(ansi.RED + 'ERROR: ' + potPath + ansi.RESET)
def checkTranslation(pot, po):
checking = False