Skip to content

Commit b2b045f

Browse files
authored
remove extraneous quotes (#270)
1 parent fdedf3c commit b2b045f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkgs/sdk_triage_bot/lib/triage.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Future<void> triage(
2727

2828
// retrieve the issue
2929
final issue = await githubService.fetchIssue(sdkSlug, issueNumber);
30-
logger.log('## issue "${issue.htmlUrl}"');
30+
logger.log('## issue ${issue.htmlUrl}');
3131
logger.log('');
3232
final labels = issue.labels.map((l) => l.name).toList();
3333
if (labels.isNotEmpty) {

0 commit comments

Comments
 (0)