Skip to content

Commit 9f3cdf6

Browse files
committed
Fix the output file to open as text file
1 parent 1f395bb commit 9f3cdf6

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)