1022
999
def rename_conflict(self, id, this_name, base_name, other_name):
1023
1000
raise RenameConflict(id, this_name, base_name, other_name)
1025
def move_conflict(self, id, this_dir, base_dir, other_dir):
1026
1006
raise MoveConflict(id, this_dir, base_dir, other_dir)
1028
def merge_conflict(self, new_file, this_path, base_lines, other_lines):
1008
def merge_conflict(self, new_file, this_path, base_path, other_path):
1030
1010
raise MergeConflict(this_path)