Package: jhbuild
Version: 0.0.svn.r1378-1
Author: Guillem Jover <guillem@hadrons.org>
Status: applied
Debbug: 544642
Description: Use new style non dashed git commands

diff --git a/jhbuild/versioncontrol/git.py b/jhbuild/versioncontrol/git.py
index 11f5980..3b06456 100644
--- a/jhbuild/versioncontrol/git.py
+++ b/jhbuild/versioncontrol/git.py
@@ -118,7 +118,7 @@ class GitBranch(Branch):
     def tree_id(self):
         if not os.path.exists(self.get_checkoutdir()):
             return None
-        output = get_output(['git-rev-parse', 'master'],
+        output = get_output(['git', 'rev-parse', 'master'],
                             cwd=self.get_checkoutdir())
         return output.strip()
 
