aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2008-11-17 11:22:42 +0100
committerGuido Guenther <agx@sigxcpu.org>2008-11-17 11:22:42 +0100
commit9be1163381ad064d2a1cd8f8c2f25d771e6b449c (patch)
tree82999943726076cb7d6a9e0f5cf17370c308957a
parent5ffb5728d6270dff0308debacdff71f8f5bc5074 (diff)
directly show commitdiffs
-rw-r--r--vcsbrowsers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcsbrowsers.py b/vcsbrowsers.py
index fd29005..616b433 100644
--- a/vcsbrowsers.py
+++ b/vcsbrowsers.py
@@ -18,7 +18,7 @@ class GitWebBrowser(VCSBrowser):
e.g. http://git.debian.org/?p=pkg-libvirt/gtk-vnc.git
"""
def commit(self, commitid):
- return "%s;a=commit;h=%s" % (self.url, commitid)
+ return "%s;a=commitdiff;h=%s" % (self.url, commitid)
def branch(self, branch):
return "%s;a=shortlog;h=refs/heads/%s" % (self.url, branch)