Skip to content

Commit 8d55063

Browse files
committed
Fix script
1 parent 13ffb0d commit 8d55063

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

misc/dump-ast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def dump(fname: str, python_version: tuple[int, int], quiet: bool = False) -> No
1919
options.python_version = python_version
2020
with open(fname, "rb") as f:
2121
s = f.read()
22-
tree = parse(s, fname, None, errors=Errors(options), options=options)
22+
tree = parse(s, fname, None, errors=Errors(options), options=options, file_exists=True)
2323
if not quiet:
2424
print(tree)
2525

0 commit comments

Comments
 (0)