Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
sunethwarna committed Feb 5, 2024
1 parent 23a5ef4 commit 8ca2410
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/process_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def AddPythonSnippetOutputs(file_path: Path) -> None:
with open(temp_file_path, "w") as temp_file_output:
temp_file_output.writelines(snippet_lines)

subprocess_run = subprocess.run([GetPython3Command(), temp_file_path], stdout=subprocess.PIPE, universal_newlines=True, check=True)
subprocess_run = subprocess.run([GetPython3Command(), "-u", temp_file_path], stdout=subprocess.PIPE, universal_newlines=True, check=True)
output_lines.append("\n")
output_lines.append("Expected output:\n")
output_lines.append("```bash\n")
Expand Down

0 comments on commit 8ca2410

Please sign in to comment.