# HG changeset patch # User Pierre-Yves David # Date 1674647182 -3600 # Node ID 46883d91e2b0107ca11074e1faec5b3385c8f25a # Parent bb6eaa65d12a980961392018e1881cee37b7308a dirstate: use `dirstate.change_files` to scope the change in `gpg` This is the way. diff -r bb6eaa65d12a -r 46883d91e2b0 hgext/gpg.py --- 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