Show More
@@ -958,10 +958,8 b' class svnsubrepo(abstractsubrepo):' | |||||
958 | p = subprocess.Popen(pycompat.rapply(procutil.tonativestr, cmd), |
|
958 | p = subprocess.Popen(pycompat.rapply(procutil.tonativestr, cmd), | |
959 | bufsize=-1, close_fds=procutil.closefds, |
|
959 | bufsize=-1, close_fds=procutil.closefds, | |
960 | stdout=subprocess.PIPE, stderr=subprocess.PIPE, |
|
960 | stdout=subprocess.PIPE, stderr=subprocess.PIPE, | |
961 | universal_newlines=True, |
|
|||
962 | env=procutil.tonativeenv(env), **extrakw) |
|
961 | env=procutil.tonativeenv(env), **extrakw) | |
963 | stdout, stderr = p.communicate() |
|
962 | stdout, stderr = map(util.fromnativeeol, p.communicate()) | |
964 | stdout, stderr = pycompat.fsencode(stdout), pycompat.fsencode(stderr) |
|
|||
965 | stderr = stderr.strip() |
|
963 | stderr = stderr.strip() | |
966 | if not failok: |
|
964 | if not failok: | |
967 | if p.returncode: |
|
965 | if p.returncode: |
General Comments 0
You need to be logged in to leave comments.
Login now