You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2018/10/05 15:37:04 UTC

svn commit: r1842934 - /subversion/trunk/tools/dist/release.py

Author: danielsh
Date: Fri Oct  5 15:37:04 2018
New Revision: 1842934

URL: http://svn.apache.org/viewvc?rev=1842934&view=rev
Log:
* tools/dist/release.py
  (write_changelog): Fix typo in comment.

Modified:
    subversion/trunk/tools/dist/release.py

Modified: subversion/trunk/tools/dist/release.py
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/release.py?rev=1842934&r1=1842933&r2=1842934&view=diff
==============================================================================
--- subversion/trunk/tools/dist/release.py (original)
+++ subversion/trunk/tools/dist/release.py Fri Oct  5 15:37:04 2018
@@ -1318,7 +1318,7 @@ def write_changelog(args):
         # comprehension extracts the revision number, as integer, from the
         # 'svn log' output.
         int(log_message.splitlines()[0].split()[0][1:]): log_message
-        # The [1:] ignores the empty first and last element of the split().
+        # The [1:-1] ignores the empty first and last element of the split().
         for log_message in mergeinfo.split(separator_line)[1:-1]
     }
     mergeinfo = mergeinfo.splitlines()