
From: "Eduardo Lima (Etrunko)" <eblima@br.ibm.com> We are now using git (yay!!). Port the commands from mercurial to the git equivalents. Signed-off-by: Eduardo Lima (Etrunko) <eblima@br.ibm.com> --- suites/libvirt-cim/lib/XenKvmLib/reporting.py | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/suites/libvirt-cim/lib/XenKvmLib/reporting.py b/suites/libvirt-cim/lib/XenKvmLib/reporting.py index b6df36e..d24f41b 100644 --- a/suites/libvirt-cim/lib/XenKvmLib/reporting.py +++ b/suites/libvirt-cim/lib/XenKvmLib/reporting.py @@ -33,10 +33,8 @@ def get_cmd_val(cmd, ip): return out def get_cimtest_version(): - revision = commands.getoutput("hg parents --template \ - \"{rev}\" 2>/dev/null") - changeset = commands.getoutput("hg parents --template \ - \"{node|short}\" 2>/dev/null") + revision = commands.getoutput("git rev-list HEAD | wc -l 2>/dev/null") + changeset = commands.getoutput("git rev-parse --short HEAD 2>/dev/null") return revision, changeset def get_libvirt_ver(ip): -- 1.7.7.5