Skip to content

Commit 05422bc

Browse files
committed
Don't need to specify tar -j; it can autodetect
1 parent bf9dde1 commit 05422bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fetch_python_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
if (outdir / "index.html").is_file():
3636
print(f"{outdir}/index.html already exists")
3737
else:
38-
subprocess.run(["tar", "vxjf", outfile], cwd=HERE).check_returncode()
38+
subprocess.run(["tar", "vxf", outfile], cwd=HERE).check_returncode()
3939

4040
if parsed.serve:
4141
# Use a different port from 8000 to avoid conflicting with other

0 commit comments

Comments
 (0)