dirstate: use `dirstate.change_files` to scope the change in `gpg`
authorPierre-Yves David <pierre-yves.david@octobus.net>
Wed, 25 Jan 2023 12:46:22 +0100
changeset 50037 46883d91e2b0
parent 50036 bb6eaa65d12a
child 50038 6cdcab3ae3fa
dirstate: use `dirstate.change_files` to scope the change in `gpg` This is the way.
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