Indicate where i18n tools are being run.

This commit is contained in:
Ned Batchelder
2014-02-10 10:41:34 -05:00
parent dd6b72382c
commit 3eb69da545

View File

@@ -10,6 +10,7 @@ def execute(command, working_directory=BASE_DIR):
Command is a string to pass to the shell.
Output is ignored.
"""
LOG.info("Executing in %s ...", working_directory)
LOG.info(command)
subprocess.check_call(command, cwd=working_directory, stderr=subprocess.STDOUT, shell=True)