##// END OF EJS Templates
copies: implement __repr__ on branch_copies for debugging...
Martin von Zweigbergk -
r45528:cfd06649 default
parent child Browse files
Show More
@@ -636,6 +636,12 b' class branch_copies(object):'
636 636 self.dirmove = {} if dirmove is None else dirmove
637 637 self.movewithdir = {} if movewithdir is None else movewithdir
638 638
639 def __repr__(self):
640 return (
641 '<branch_copies\n copy=%r\n renamedelete=%r\n dirmove=%r\n movewithdir=%r\n>'
642 % (self.copy, self.renamedelete, self.dirmove, self.movewithdir,)
643 )
644
639 645
640 646 def _fullcopytracing(repo, c1, c2, base):
641 647 """ The full copytracing algorithm which finds all the new files that were
General Comments 0
You need to be logged in to leave comments. Login now