mercurial/dirstate.py
changeset 47589 f5c24c124e07
parent 47558 811a79bfb8bb
child 47590 c5190adc17d5
--- a/mercurial/dirstate.py	Fri Jul 09 22:37:24 2021 +0200
+++ b/mercurial/dirstate.py	Wed Jul 07 19:31:52 2021 +0200
@@ -387,7 +387,7 @@
                     source = self._map.copymap.get(f)
                     if source:
                         copies[f] = source
-                    self.add(f)
+                    self._add(f)
         return copies
 
     def setbranch(self, branch):
@@ -547,8 +547,12 @@
 
     def add(self, f):
         '''Mark a file added.'''
-        self._addpath(f, added=True)
-        self._map.copymap.pop(f, None)
+        self._add(f)
+
+    def _add(self, filename):
+        """internal function to mark a file as added"""
+        self._addpath(filename, added=True)
+        self._map.copymap.pop(filename, None)
 
     def remove(self, f):
         '''Mark a file removed.'''