diff options
author | Zackery Spytz <zspytz@gmail.com> | 2018-09-11 15:54:07 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2018-09-11 15:54:07 (GMT) |
commit | 73870bfeb9cf350d84ee88bd25430c104b3c6191 (patch) | |
tree | 53529cb3a6e700e88a61a65f11d2db6f4d92e9df /Misc | |
parent | 3102e24d83315eee42a94c460956fbcb92ac510f (diff) | |
download | cpython-73870bfeb9cf350d84ee88bd25430c104b3c6191.zip cpython-73870bfeb9cf350d84ee88bd25430c104b3c6191.tar.gz cpython-73870bfeb9cf350d84ee88bd25430c104b3c6191.tar.bz2 |
closes bpo-32490: Fix filename duplication in subprocess exception message. (GH-9163)
8621bb5d93239316f97281826461b85072ff6db7 sets the filename in directly in the FileNotFoundError, so we may revert the earlier fix 5f780400572508a8179de6a6c13b58b7be417ef5.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-09-11-01-25-35.bpo-32490.ROIDO1.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-09-11-01-25-35.bpo-32490.ROIDO1.rst b/Misc/NEWS.d/next/Library/2018-09-11-01-25-35.bpo-32490.ROIDO1.rst new file mode 100644 index 0000000..16fe7b4 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-09-11-01-25-35.bpo-32490.ROIDO1.rst @@ -0,0 +1,2 @@ +Prevent filename duplication in :mod:`subprocess` exception messages. Patch +by Zackery Spytz. |