statprof: convert a few exception byte strings to str
That way these display without the b'' prefix.
Differential Revision: https://phab.mercurial-scm.org/D11920
--- a/mercurial/statprof.py Mon Dec 13 16:42:36 2021 -0500
+++ b/mercurial/statprof.py Mon Dec 13 17:59:36 2021 -0500
@@ -516,7 +516,7 @@
elif format == DisplayFormats.Chrome:
write_to_chrome(data, fp, **kwargs)
else:
- raise Exception(b"Invalid display format")
+ raise Exception("Invalid display format")
if format not in (DisplayFormats.Json, DisplayFormats.Chrome):
fp.write(b'---\n')
@@ -625,7 +625,7 @@
def display_about_method(data, fp, function=None, **kwargs):
if function is None:
- raise Exception(b"Invalid function")
+ raise Exception("Invalid function")
filename = None
if b':' in function:
@@ -1080,7 +1080,7 @@
printusage()
return 0
else:
- assert False, b"unhandled option %s" % o
+ assert False, "unhandled option %s" % o
if not path:
print('must specify --file to load')