##// END OF EJS Templates
statprof: convert a few exception byte strings to str...
Matt Harbison -
r49312:c1fe758c default
parent child Browse files
Show More
@@ -516,7 +516,7 b' def display(fp=None, format=3, data=None'
516 elif format == DisplayFormats.Chrome:
516 elif format == DisplayFormats.Chrome:
517 write_to_chrome(data, fp, **kwargs)
517 write_to_chrome(data, fp, **kwargs)
518 else:
518 else:
519 raise Exception(b"Invalid display format")
519 raise Exception("Invalid display format")
520
520
521 if format not in (DisplayFormats.Json, DisplayFormats.Chrome):
521 if format not in (DisplayFormats.Json, DisplayFormats.Chrome):
522 fp.write(b'---\n')
522 fp.write(b'---\n')
@@ -625,7 +625,7 b' def display_by_method(data, fp):'
625
625
626 def display_about_method(data, fp, function=None, **kwargs):
626 def display_about_method(data, fp, function=None, **kwargs):
627 if function is None:
627 if function is None:
628 raise Exception(b"Invalid function")
628 raise Exception("Invalid function")
629
629
630 filename = None
630 filename = None
631 if b':' in function:
631 if b':' in function:
@@ -1080,7 +1080,7 b' def main(argv=None):'
1080 printusage()
1080 printusage()
1081 return 0
1081 return 0
1082 else:
1082 else:
1083 assert False, b"unhandled option %s" % o
1083 assert False, "unhandled option %s" % o
1084
1084
1085 if not path:
1085 if not path:
1086 print('must specify --file to load')
1086 print('must specify --file to load')
General Comments 0
You need to be logged in to leave comments. Login now