worklog: drop frills
Junio C Hamano committed
May 8, 2011 at 22:29 UTC
43990219c8371824266e808d4eec01629bf168fd
1 file changed
+5
-5
worklog
+5
-5
@@ -276,7 +276,7 @@ sub day_summary {
276
277
$count = plural($count, "patch", "patches");
278
$people = plural($people, "person", "people");
279
- print " * Queued $count from $people.\n" if (!$quiet);
279
+ print "Queued $count from $people.\n" if (!$quiet);
280
if ($verbose) {
281
for my $patch (map { $patch{$_} } @{$patch_by_date{$date}}) {
282
print " $patch->[2]\n";
@@ -294,7 +294,7 @@ sub day_summary {
294
$total_merges->{$branch} ||= 0;
295
$total_merges->{$branch} += $count;
296
$count = plural($count, "topic", "topics");
297
- print " Merged $count to '$branch' branch$purpose.\n" if (!$quiet);
297
+ print "Merged $count to '$branch' branch$purpose.\n" if (!$quiet);
298
if ($verbose) {
299
my @pieces = map { $patch{$_}->[2] . "," } @$merges;
300
$pieces[-1] =~ s/,$/./;
@@ -312,18 +312,18 @@ sub range_summary {
312
313
if ($total_t) {
314
my $count = plural($total_t, "release", "releases");
315
- print " Tagged $count.\n";
315
+ print "Tagged $count.\n";
316
}
317
if ($total_p) {
318
my $people = plural(scalar @{[keys %{$total_n}]}, "person", "people");
319
my$count = plural($total_p, "patch", "patches");
320
- print " * Queued $count from $people.\n";
320
+ print "Queued $count from $people.\n";
321
}
322
for my $branch_data (@integrate) {
323
my ($branch, $purpose) = @{$branch_data};
324
next unless $total_m->{$branch};
325
my $count = plural($total_m->{$branch}, "merge", "merges");
326
- print " * Made $count to '$branch' branch$purpose.\n";
326
+ print "Made $count to '$branch' branch$purpose.\n";
327
}
328
$sep = "\n";
329
}