summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Git.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-04-16 11:24:01 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-04-16 11:24:01 -0400
commitd990a3446734a9b8bca666f94bdbf8cb3592b856 (patch)
tree041f527a908950ed180c60318b02955fb08a1ac3 /src/lib/Bcfg2/Server/Plugins/Git.py
parent1b37ec798573d9d6b624bcf04e4c920a1a8ef624 (diff)
downloadbcfg2-d990a3446734a9b8bca666f94bdbf8cb3592b856.tar.gz
bcfg2-d990a3446734a9b8bca666f94bdbf8cb3592b856.tar.bz2
bcfg2-d990a3446734a9b8bca666f94bdbf8cb3592b856.zip
Git: fix command debug log without GitPython installed
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/Git.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Git.py b/src/lib/Bcfg2/Server/Plugins/Git.py
index c8362db41..44971aba7 100644
--- a/src/lib/Bcfg2/Server/Plugins/Git.py
+++ b/src/lib/Bcfg2/Server/Plugins/Git.py
@@ -44,7 +44,7 @@ class Git(Version):
else:
cmd = ["git", "--git-dir", self.vcs_path,
"--work-tree", self.vcs_root, "rev-parse", "HEAD"]
- self.debug_log("Git: Running cmd")
+ self.debug_log("Git: Running %s" % cmd)
proc = Popen(cmd, stdout=PIPE, stderr=PIPE)
rv, err = proc.communicate()
if proc.wait():