Skip to content

Commit cf50b9d

Browse files
authored
[process-stats-dir] open output file as text (#58755)
Addresses #58754
1 parent 379ad6c commit cf50b9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/process-stats-dir.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ def main():
566566
parser.add_argument("--verbose", action="store_true",
567567
help="Report activity verbosely")
568568
parser.add_argument("--output", default="-",
569-
type=argparse.FileType('wb', 0),
569+
type=argparse.FileType('w', 0),
570570
help="Write output to file")
571571
parser.add_argument("--paired", action="store_true",
572572
help="Process two dirs-of-stats-dirs, pairwise")

0 commit comments

Comments
 (0)