Skip to content

Commit

Permalink
remove extraneous quotes (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew committed Jun 12, 2024
1 parent fdedf3c commit b2b045f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/sdk_triage_bot/lib/triage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Future<void> triage(

// retrieve the issue
final issue = await githubService.fetchIssue(sdkSlug, issueNumber);
logger.log('## issue "${issue.htmlUrl}"');
logger.log('## issue ${issue.htmlUrl}');
logger.log('');
final labels = issue.labels.map((l) => l.name).toList();
if (labels.isNotEmpty) {
Expand Down

0 comments on commit b2b045f

Please sign in to comment.