diff mercurial/dirstate.py @ 47594:0cef28b121a4

context: use `dirstate.set_tracked` in `context.add` This is the new shiny API. Differential Revision: https://phab.mercurial-scm.org/D11014
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 08 Jul 2021 00:58:44 +0200
parents f927ad5a4e2c
children cce51119bfe6
line wrap: on
line diff
--- a/mercurial/dirstate.py	Thu Jul 08 03:03:34 2021 +0200
+++ b/mercurial/dirstate.py	Thu Jul 08 00:58:44 2021 +0200
@@ -85,7 +85,7 @@
 
 def requires_no_parents_change(func):
     def wrap(self, *args, **kwargs):
-        if not self.pendingparentchange():
+        if self.pendingparentchange():
             msg = 'calling `%s` inside of a parentchange context'
             msg %= func.__name__
             raise error.ProgrammingError(msg)