##// END OF EJS Templates
py3: convert cwd to native string when running `fix`...
Matt Harbison -
r43463:2d1f9880 default
parent child Browse files
Show More
@@ -631,7 +631,7 b' def fixfile(ui, repo, opts, fixers, fixc'
631 631 proc = subprocess.Popen(
632 632 procutil.tonativestr(command),
633 633 shell=True,
634 cwd=repo.root,
634 cwd=procutil.tonativestr(repo.root),
635 635 stdin=subprocess.PIPE,
636 636 stdout=subprocess.PIPE,
637 637 stderr=subprocess.PIPE,
General Comments 0
You need to be logged in to leave comments. Login now