# HG changeset patch # User Valentin Gatien-Baron # Date 2021-08-02 12:06:27 # Node ID 6802422a1ae009a90539c5ef98e813a46b3489df # Parent 3fffb48539ee1ef4ff2cf584fcb506fcbcb3b616 remotefilelog: fix what looks like a wrong refactoring when various store functions started returning a revlog type as the first element of the tuple. Differential Revision: https://phab.mercurial-scm.org/D11243 diff --git a/hgext/remotefilelog/remotefilelogserver.py b/hgext/remotefilelog/remotefilelogserver.py --- a/hgext/remotefilelog/remotefilelogserver.py +++ b/hgext/remotefilelog/remotefilelogserver.py @@ -186,7 +186,7 @@ def onetimesetup(ui): yield (t, u, e, s) for x in repo.store.topfiles(): - if state.noflatmf and x[0][:11] == b'00manifest.': + if state.noflatmf and x[1][:11] == b'00manifest.': continue yield x