chiark / gitweb /
Execute the 'git ...' rather than 'git-...'
[stgit] / stgit / stack.py
index f72f83b0bd4eb3711da5a98b204ae0d5facb55bf..1130210de3f8d5052c4f34e84ab7b6203054eb53 100644 (file)
@@ -370,10 +370,10 @@ class PatchSet(StgitObject):
 
 
 def shortlog(patches):
-    log = ''.join(Run('git-log', '--pretty=short',
+    log = ''.join(Run('git', 'log', '--pretty=short',
                       p.get_top(), '^%s' % p.get_bottom()).raw_output()
                   for p in patches)
-    return Run('git-shortlog').raw_input(log).raw_output()
+    return Run('git', 'shortlog').raw_input(log).raw_output()
 
 class Series(PatchSet):
     """Class including the operations on series