The constructed mercurial url is wrong - it creates urls like
"repo/rev3456fg", which just get redirected to the default log, rather
than the commit. The url should be "repo/rev/3456fg".
ui.config('web', 'baseurl') or '')
if self.urlprefix:
# self.commit is appended to this by do_overrides
- self.urlprefix = self.urlprefix.rstrip('/') + '/rev'
+ self.urlprefix = self.urlprefix.rstrip('/') + '/rev/'
self.cialike = ui.config('irker', 'cialike')
self.filtercmd = ui.config('irker', 'filtercmd')
if not self.project: