Skip to content

Commit 6b739d6

Browse files
committed
[issuegen] Fix missing spacing
1 parent ce31d97 commit 6b739d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/issuegen.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ sub header {
226226
if (/^Title:\s+(.+)$/) { $title = $1; }
227227
elsif (/^Draft:\s+(\S+)/) { $url = $1; }
228228
elsif (/^Shortname:\s+(\S+)/) { $shortname = $1; }
229-
else { $intro .= $_; }
229+
else { $intro .= $_ . "\n"; }
230230
}
231231
die "Error: missing document URL or title.\n" unless ($url && $title);
232232

0 commit comments

Comments
 (0)