comparison hgext/fix.py @ 50143:a3c856e2ea2f

branching: merge with default the first part of the fix is there
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 17 Feb 2023 17:04:41 +0100
parents b5ecd0bcbcd7
children f4ff55583dec
comparison
equal deleted inserted replaced
50142:2d0daf9c9d5d 50143:a3c856e2ea2f
696 opts, path, basepaths, basectxs, fixctx, newdata 696 opts, path, basepaths, basectxs, fixctx, newdata
697 ) 697 )
698 command = fixer.command(ui, path, ranges) 698 command = fixer.command(ui, path, ranges)
699 if command is None: 699 if command is None:
700 continue 700 continue
701 msg = b'fixing: %s - %s - %s\n'
702 msg %= (fixctx, fixername, path)
703 ui.debug(msg)
701 ui.debug(b'subprocess: %s\n' % (command,)) 704 ui.debug(b'subprocess: %s\n' % (command,))
702 proc = subprocess.Popen( 705 proc = subprocess.Popen(
703 procutil.tonativestr(command), 706 procutil.tonativestr(command),
704 shell=True, 707 shell=True,
705 cwd=procutil.tonativestr(repo.root), 708 cwd=procutil.tonativestr(repo.root),