##// END OF EJS Templates
dirstatemap: use the default code to handle "clean-p2" case...
marmoute -
r48712:3429f48d default
parent child Browse files
Show More
@@ -289,11 +289,8 b' class dirstatemap(object):'
289 # In addition, this seems to be a case where the file is marked
289 # In addition, this seems to be a case where the file is marked
290 # as merged without actually being the result of a merge
290 # as merged without actually being the result of a merge
291 # action. So thing are not ideal here.
291 # action. So thing are not ideal here.
292 self.addfile(filename, merged=True)
292 merged = True
293 return
293 clean_p2 = False
294 else:
295 self.addfile(filename, from_p2=True)
296 return
297 elif not p1_tracked and p2_tracked and wc_tracked:
294 elif not p1_tracked and p2_tracked and wc_tracked:
298 clean_p2 = True
295 clean_p2 = True
299 elif possibly_dirty:
296 elif possibly_dirty:
General Comments 0
You need to be logged in to leave comments. Login now