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 22:50:43 UTC

trafficserver git commit: Make sure any trailing WS is removed from the Jira summary

Repository: trafficserver
Updated Branches:
  refs/heads/master 2a1e7b50c -> b66e45a9b


Make sure any trailing WS is removed from the Jira summary


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

Branch: refs/heads/master
Commit: b66e45a9b6ec7179bc95be23da0f9455d58f3864
Parents: 2a1e7b5
Author: Leif Hedstrom <zw...@apache.org>
Authored: Mon Dec 21 14:50:14 2015 -0700
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Mon Dec 21 14:50:14 2015 -0700

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


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