diff options
author | sblondon <sblondon@users.noreply.github.com> | 2020-12-13 05:27:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-13 05:27:22 (GMT) |
commit | da431f789bd1e6b9790f06f9ce47b3ec6a701e65 (patch) | |
tree | c0f60c694bc7f1a1919e7c83ec7dd9f05f399be5 /Doc/library/subprocess.rst | |
parent | b5a6db9111562454617b6771b61f2734ea0420c9 (diff) | |
download | cpython-da431f789bd1e6b9790f06f9ce47b3ec6a701e65.zip cpython-da431f789bd1e6b9790f06f9ce47b3ec6a701e65.tar.gz cpython-da431f789bd1e6b9790f06f9ce47b3ec6a701e65.tar.bz2 |
Add two spaces around equal sign (#23719)
Fit to PEP8 coding style
Diffstat (limited to 'Doc/library/subprocess.rst')
-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 292f8be..7f947ef 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` |