diff options
Diffstat (limited to 'tools/translations/extract.py')
-rwxr-xr-x | tools/translations/extract.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/translations/extract.py b/tools/translations/extract.py index 195f45f637..ef3ad4da65 100755 --- a/tools/translations/extract.py +++ b/tools/translations/extract.py @@ -107,5 +107,5 @@ shutil.move("tools.pot", "tools/translations/tools.pot") if (os.name == "posix"): added = subprocess.check_output("git diff tools/translations/tools.pot | grep \+msgid | wc -l", shell = True) removed = subprocess.check_output("git diff tools/translations/tools.pot | grep \\\-msgid | wc -l", shell = True) - print("Template changes compared to the staged status:") - print(" Additions: %s msgids.\n Deletions: %s msgids." % (int(added), int(removed))) + print("\n# Template changes compared to the staged status:") + print("# Additions: %s msgids.\n# Deletions: %s msgids." % (int(added), int(removed))) |