Skip to content

Commit 477502c

Browse files
committed
Improve error-reporting for issuegen
--HG-- extra : rebase_source : 78a85ba323abf7980bff56664d7f254e7c70f1cf
1 parent dab6b46 commit 477502c

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

bin/issuegen.pl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@
1717

1818
my $inFile = $ARGV[0];
1919
if (!$inFile) {
20-
print "Pass in issues list filename for processing!\n";
21-
print "Template for issues-list.txt follows...\n";
20+
print "\nPass in issues list filename for processing!\n\n";
21+
print "~~~~~~~~~~~~~~~~~~~~~ Template for issues-list.txt ~~~~~~~~~~~~~~~~~~~~~\n";
2222
print <<XXX;
23+
2324
Draft: http://www.w3.org/TR/2013/WD-css-text-decor-3-20130103/
2425
Title: CSS Text Decoration Level 3
2526
... anything else you want here, except 4 dashes ...
27+
2628
----
2729
Issue 1.
2830
Summary: [summary]
@@ -58,7 +60,6 @@
5860
$code = '';
5961
if (/\nVerified:\s+http/) {
6062
$code = 'a';
61-
print "Verified!";
6263
}
6364
elsif (/\n(?:Closed|Open):\s+(\S+)/) {
6465
$code = $statusStyle{lc $1};

0 commit comments

Comments
 (0)