changeset 50925 | d718eddf01d9 |
parent 50783 | dde4b55a0785 |
child 51859 | f4733654f144 |
--- a/hgext/lfs/wireprotolfsserver.py Thu Dec 08 15:33:19 2022 +0100 +++ b/hgext/lfs/wireprotolfsserver.py Thu Aug 31 23:56:15 2023 +0200 @@ -16,7 +16,6 @@ from mercurial import ( exthelper, pycompat, - util, wireprotoserver, ) @@ -44,7 +43,7 @@ if not rctx.repo.ui.configbool(b'experimental', b'lfs.serve'): return False - if not util.safehasattr(rctx.repo.svfs, 'lfslocalblobstore'): + if not hasattr(rctx.repo.svfs, 'lfslocalblobstore'): return False if not req.dispatchpath: