]> git.ipfire.org Git - thirdparty/git.git/commitdiff
worklog: drop frills
authorJunio C Hamano <gitster@pobox.com>
Mon, 9 May 2011 05:29:17 +0000 (22:29 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 9 May 2011 05:29:17 +0000 (22:29 -0700)
worklog

diff --git a/worklog b/worklog
index 318cb4d04927c0a1a72f86021a13905af419a3ff..99a6a682f545492472767f5a0173240817b82c1b 100755 (executable)
--- a/worklog
+++ b/worklog
@@ -276,7 +276,7 @@ sub day_summary {
 
                $count = plural($count, "patch", "patches");
                $people = plural($people, "person", "people");
-               print " * Queued $count from $people.\n" if (!$quiet);
+               print "Queued $count from $people.\n" if (!$quiet);
                if ($verbose) {
                        for my $patch (map { $patch{$_} } @{$patch_by_date{$date}}) {
                                print "  $patch->[2]\n";
@@ -294,7 +294,7 @@ sub day_summary {
                $total_merges->{$branch} ||= 0;
                $total_merges->{$branch} += $count;
                $count = plural($count, "topic", "topics");
-               print " Merged $count to '$branch' branch$purpose.\n" if (!$quiet);
+               print "Merged $count to '$branch' branch$purpose.\n" if (!$quiet);
                if ($verbose) {
                        my @pieces = map { $patch{$_}->[2] . "," } @$merges;
                        $pieces[-1] =~ s/,$/./;
@@ -312,18 +312,18 @@ sub range_summary {
 
        if ($total_t) {
                my $count = plural($total_t, "release", "releases");
-               print " Tagged $count.\n";
+               print "Tagged $count.\n";
        }
        if ($total_p) {
                my $people = plural(scalar @{[keys %{$total_n}]}, "person", "people");
                my$count = plural($total_p, "patch", "patches");
-               print " * Queued $count from $people.\n";
+               print "Queued $count from $people.\n";
        }
        for my $branch_data (@integrate) {
                my ($branch, $purpose) = @{$branch_data};
                next unless $total_m->{$branch};
                my $count = plural($total_m->{$branch}, "merge", "merges");
-               print " * Made $count to '$branch' branch$purpose.\n";
+               print "Made $count to '$branch' branch$purpose.\n";
        }
        $sep = "\n";
 }