Skip to content

Commit

Permalink
Fix missing parenthesis (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
aduh95 authored Nov 20, 2020
1 parent af40726 commit 9b82e8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IssueProcessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export class IssueProcessor {
await this.closeIssue(issue, closeMessage, closeLabel);
} else {
core.info(
`Stale ${issueType} is not old enough to close yet (hasComments? ${issueHasComments}, hasUpdate? ${issueHasUpdate}`
`Stale ${issueType} is not old enough to close yet (hasComments? ${issueHasComments}, hasUpdate? ${issueHasUpdate})`
);
}
}
Expand Down

0 comments on commit 9b82e8c

Please sign in to comment.