Download:
child 255:d52b259f2829
parent 253:78fd658ef778
254:dca6cd4682e3
Anton Shestakov <av6@dwimlabs.net>, Thu, 17 Nov 2016 16:16:16 +0800
adapters: make get_commit_url() lead to the commit diff

1 файлов изменено, 1 вставок(+), 1 удалений(-) [+]
candolint/adapters.py file | annotate | diff | comparison | revisions
--- a/candolint/adapters.py Thu Nov 17 00:43:26 2016 +0800
+++ b/candolint/adapters.py Thu Nov 17 16:16:16 2016 +0800
@@ -40,7 +40,7 @@
class GithubAdapter(HostingAdapter):
def get_commit_url(self, change):
- return '{url}/commits/{node}'.format(**{
+ return '{url}/commit/{node}'.format(**{
'url': self.project.url,
'node': change.node
})