Skip to content

Commit

Permalink
Merge pull request dlang#418 from MartinNowak/merge_stable
Browse files Browse the repository at this point in the history
merge stable
merged-on-behalf-of: Mathias LANG <[email protected]>
  • Loading branch information
dlang-bot authored Jul 10, 2020
2 parents 98ac196 + 84f0d90 commit 42ab606
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions changed.d
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,9 @@ auto getIssues(string revRange)

foreach (line; p.stdout.byLine())
{
if (auto m = match(line, closedRE))
if (auto m = match(line.stripLeft, closedRE))
{
if (!m.captures[1].length) continue;
m.captures[5]
m.captures[1]
.splitter(ctRegex!`[^\d]+`)
.filter!(b => b.length)
.map!(to!int)
Expand Down

0 comments on commit 42ab606

Please sign in to comment.