hgext/fastannotate/support.py
changeset 43117 8ff1ecfadcd1
parent 43089 c59eb1560c44
child 43989 de358da72eb1
equal deleted inserted replaced
43116:defabf63e969 43117:8ff1ecfadcd1
   114         )
   114         )
   115     try:
   115     try:
   116         return _doannotate(self, follow, diffopts)
   116         return _doannotate(self, follow, diffopts)
   117     except Exception as ex:
   117     except Exception as ex:
   118         self._repo.ui.debug(
   118         self._repo.ui.debug(
   119             b'fastannotate: falling back to the vanilla ' b'annotate: %r\n' % ex
   119             b'fastannotate: falling back to the vanilla annotate: %r\n' % ex
   120         )
   120         )
   121         return orig(self, follow=follow, skiprevs=skiprevs, diffopts=diffopts)
   121         return orig(self, follow=follow, skiprevs=skiprevs, diffopts=diffopts)
   122 
   122 
   123 
   123 
   124 def _remotefctxannotate(orig, self, follow=False, skiprevs=None, diffopts=None):
   124 def _remotefctxannotate(orig, self, follow=False, skiprevs=None, diffopts=None):