Git subrepo tests now pass on Python 3.
Details
Details
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
Event Timeline
Comment Actions
- retdata = p.stdout.read().strip()
+ retdata = pycompat.fsencode(p.stdout.read().strip())
Curious why subprocess output can be a unicode. Is it a sort of text-mode
stream?