From b25d4c4c028b8ea13539be2e24758d2d679a25fd Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Thu, 15 Feb 2024 22:43:29 +0100 Subject: [PATCH] Fix duplicate quotes in dependency audit. --- Library/Homebrew/formula_auditor.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/formula_auditor.rb b/Library/Homebrew/formula_auditor.rb index 93fdc1f0f3..b094171b22 100644 --- a/Library/Homebrew/formula_auditor.rb +++ b/Library/Homebrew/formula_auditor.rb @@ -279,10 +279,10 @@ module Homebrew # Don't complain about missing cross-tap dependencies next rescue FormulaUnavailableError - problem "Can't find dependency '#{dep.name.inspect}'." + problem "Can't find dependency '#{dep.name}'." next rescue TapFormulaAmbiguityError - problem "Ambiguous dependency '#{dep.name.inspect}'." + problem "Ambiguous dependency '#{dep.name}'." next end