]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add two spaces around equal sign (#23719)
authorsblondon <sblondon@users.noreply.github.com>
Sun, 13 Dec 2020 05:27:22 +0000 (06:27 +0100)
committerGitHub <noreply@github.com>
Sun, 13 Dec 2020 05:27:22 +0000 (21:27 -0800)
Fit to PEP8 coding style

Doc/library/subprocess.rst

index 292f8be20aa9872d0154d74ee9e0a0410006d25d..7f947efcb6766b85304d9b96279889c8a99fe5ae 100644 (file)
@@ -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`