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:24:20 UTC

[2/4] trafficserver git commit: Make sure any trailing WS is removed from the Jira summary

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/e4149929
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/e4149929
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/e4149929

Branch: refs/heads/6.1.x
Commit: e414992901e5508fbf0ea23b50b1b31215e7319f
Parents: af0c863
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 15:23:48 2015 -0700

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


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/e4149929/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";