Download:
child 112:ac9565363b8d
parent 110:6b22a1b4b85c
111:b26943a3d16f
Anton Shestakov <av6@dwimlabs.net>, Wed, 06 Jul 2016 14:02:44 +0800
adapters: return noop urls when using base adapter

1 файлов изменено, 3 вставок(+), 3 удалений(-) [+]
candolint/adapters.py file | annotate | diff | comparison | revisions
--- a/candolint/adapters.py Tue Jul 05 21:02:50 2016 +0800
+++ b/candolint/adapters.py Wed Jul 06 14:02:44 2016 +0800
@@ -6,13 +6,13 @@
self.project = project
def get_commit_url(self, change):
- return ''
+ return '#'
def get_branch_url(self, change):
- return ''
+ return '#'
def get_line_url(self, change, line):
- return ''
+ return '#'
class BitbucketAdapter(HostingAdapter):