diff -r ca053fc7efc5 -r 303dae0136b0 hgext/fastannotate/support.py --- a/hgext/fastannotate/support.py Thu Aug 09 14:56:29 2018 -0400 +++ b/hgext/fastannotate/support.py Thu Aug 09 15:05:43 2018 -0400 @@ -120,12 +120,3 @@ def replacefctxannotate(): extensions.wrapfunction(hgcontext.basefilectx, 'annotate', _fctxannotate) - -def replaceremotefctxannotate(): - try: - r = extensions.find('remotefilelog') - except KeyError: - return - else: - extensions.wrapfunction(r.remotefilectx.remotefilectx, 'annotate', - _remotefctxannotate)