##// END OF EJS Templates
fsmonitor: fix str/bytes mismatch when accessing watchman version...
Gregory Szorc -
r43707:e6ce1599 stable
parent child Browse files
Show More
@@ -190,7 +190,7 b' def debuginstall(ui, fm):'
190 fm.write(
190 fm.write(
191 b"fsmonitor-watchman-version",
191 b"fsmonitor-watchman-version",
192 _(b" watchman binary version %s\n"),
192 _(b" watchman binary version %s\n"),
193 v[b"version"],
193 pycompat.bytestr(v["version"]),
194 )
194 )
195 except watchmanclient.Unavailable as e:
195 except watchmanclient.Unavailable as e:
196 err = str(e)
196 err = str(e)
General Comments 0
You need to be logged in to leave comments. Login now