From 3eb69da54576354f19409bd901c0b2e816c19a5f Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 10 Feb 2014 10:41:34 -0500 Subject: [PATCH] Indicate where i18n tools are being run. --- i18n/execute.py | 1 + 1 file changed, 1 insertion(+) diff --git a/i18n/execute.py b/i18n/execute.py index e7c2465338..7a079ab1d6 100644 --- a/i18n/execute.py +++ b/i18n/execute.py @@ -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)