##// END OF EJS Templates
py3: remove unneeded fsencode() from gitsubrepo...
Yuya Nishihara -
r41579:921b4ffa default draft
parent child Browse files
Show More
@@ -1286,7 +1286,7 b' class gitsubrepo(abstractsubrepo):'
1286 if stream:
1286 if stream:
1287 return p.stdout, None
1287 return p.stdout, None
1288
1288
1289 retdata = pycompat.fsencode(p.stdout.read().strip())
1289 retdata = p.stdout.read().strip()
1290 # wait for the child to exit to avoid race condition.
1290 # wait for the child to exit to avoid race condition.
1291 p.wait()
1291 p.wait()
1292
1292
General Comments 0
You need to be logged in to leave comments. Login now