aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)