Mercurial > public > mercurial-scm > hg-stable
diff hgext/gpg.py @ 50093:46883d91e2b0
dirstate: use `dirstate.change_files` to scope the change in `gpg`
This is the way.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Wed, 25 Jan 2023 12:46:22 +0100 |
parents | 642e31cb55f0 |
children | 181936ad069a |
line wrap: on
line diff
--- a/hgext/gpg.py Tue Dec 13 16:57:41 2022 +0100 +++ b/hgext/gpg.py Wed Jan 25 12:46:22 2023 +0100 @@ -352,7 +352,8 @@ sigsfile.close() if b'.hgsigs' not in repo.dirstate: - repo[None].add([b".hgsigs"]) + with repo.dirstate.changing_files(repo): + repo[None].add([b".hgsigs"]) if opts[b"no_commit"]: return