summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTzu-ping Chung <uranusjr@gmail.com>2019-02-02 17:13:23 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2019-02-02 17:13:23 (GMT)
commit2de576e16d42ce43698d384d0dd46ba6cf165424 (patch)
treefc33745c8372fd578b3dbbdcdb35eec1fff77576 /Misc
parent05e922136a3286893bd489a8f2ecfa0dba4da368 (diff)
downloadcpython-2de576e16d42ce43698d384d0dd46ba6cf165424.zip
cpython-2de576e16d42ce43698d384d0dd46ba6cf165424.tar.gz
cpython-2de576e16d42ce43698d384d0dd46ba6cf165424.tar.bz2
bpo-1104: msilib.SummaryInfo.GetProperty() truncates the string by one character (GH-4517)
Add one char to MsiSummaryInfoGetProperty() output Based on the patch in bpo-1104 by Anthony Tuininga (atuining) and Mark McMahon (markm).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Windows/2017-11-24-12-53-54.bpo-1104.1CWSZp.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2017-11-24-12-53-54.bpo-1104.1CWSZp.rst b/Misc/NEWS.d/next/Windows/2017-11-24-12-53-54.bpo-1104.1CWSZp.rst
new file mode 100644
index 0000000..a404349
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2017-11-24-12-53-54.bpo-1104.1CWSZp.rst
@@ -0,0 +1,2 @@
+Correctly handle string length in ``msilib.SummaryInfo.GetProperty()`` to
+prevent it from truncating the last character.