You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2015/12/21 23:21:44 UTC

trafficserver git commit: Doh, chomp does not trim WS ...

Repository: trafficserver
Updated Branches:
  refs/heads/master b66e45a9b -> 918db53a2


Doh, chomp does not trim WS ...


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/918db53a
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/918db53a
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/918db53a

Branch: refs/heads/master
Commit: 918db53a21bc17e79f27a727525e71eb360f6f26
Parents: b66e45a
Author: Leif Hedstrom <zw...@apache.org>
Authored: Mon Dec 21 15:20:12 2015 -0700
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Mon Dec 21 15:20:44 2015 -0700

----------------------------------------------------------------------
 tools/changelog.pl | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/918db53a/tools/changelog.pl
----------------------------------------------------------------------
diff --git a/tools/changelog.pl b/tools/changelog.pl
index 2ead340..8ac7fc9 100755
--- a/tools/changelog.pl
+++ b/tools/changelog.pl
@@ -97,6 +97,7 @@ foreach my $key (sort keys %{ $changelog })
   foreach my $issue (@{ $changelog->{$key} })
   {
     chomp $issue->{summary};
+    $issue->{summary} =~ s/\s+$//; # Trim trailing whitespace
     print "  *) [$issue->{key}] ";
     if (length($issue->{summary}) <= (131 - 15)) {
       print "$issue->{summary}\n";