diff options
author | sblondon <sblondon@users.noreply.github.com> | 2020-12-13 06:27:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-12 21:27:22 -0800 |
commit | da431f789bd1e6b9790f06f9ce47b3ec6a701e65 (patch) | |
tree | c0f60c694bc7f1a1919e7c83ec7dd9f05f399be5 | |
parent | b5a6db9111562454617b6771b61f2734ea0420c9 (diff) | |
download | cpython-git-da431f789bd1e6b9790f06f9ce47b3ec6a701e65.tar.gz |
Add two spaces around equal sign (#23719)
Fit to PEP8 coding style
-rw-r--r-- | Doc/library/subprocess.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 292f8be20a..7f947efcb6 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -1281,7 +1281,7 @@ be used directly: becomes:: - output=check_output("dmesg | grep hda", shell=True) + output = check_output("dmesg | grep hda", shell=True) Replacing :func:`os.system` |