##// END OF EJS Templates
fsmonitor: use stringutil.forcebytestr() instead of str() on an exception...
Ian Moody -
r43721:90fba224 stable
parent child Browse files
Show More
@@ -193,7 +193,7 b' def debuginstall(ui, fm):'
193 193 pycompat.bytestr(v["version"]),
194 194 )
195 195 except watchmanclient.Unavailable as e:
196 err = str(e)
196 err = stringutil.forcebytestr(e)
197 197 fm.condwrite(
198 198 err,
199 199 b"fsmonitor-watchman-error",
General Comments 0
You need to be logged in to leave comments. Login now