From b4efb2c258a3e1735f46a6874ccf67bdd40516a1 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Wed, 22 Jul 2020 14:21:06 +0200 Subject: [PATCH] notability: fix variable names --- Library/Homebrew/utils/notability.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/utils/notability.rb b/Library/Homebrew/utils/notability.rb index 831eb9b6cd..86e801202c 100644 --- a/Library/Homebrew/utils/notability.rb +++ b/Library/Homebrew/utils/notability.rb @@ -9,7 +9,7 @@ module SharedAudits @github_repo_data ||= {} @github_repo_data["#{user}/#{repo}"] ||= GitHub.repository(user, repo) - @github_data["#{user}/#{repo}"] + @github_repo_data["#{user}/#{repo}"] rescue GitHub::HTTPNotFoundError nil end @@ -23,7 +23,7 @@ module SharedAudits JSON.parse(out) end - @gitlab_data["#{user}/#{repo}"] + @gitlab_repo_data["#{user}/#{repo}"] end def github(user, repo)