From 9dd52a83e464e9fd9613341f50bab11c4b9703b0 Mon Sep 17 00:00:00 2001 From: Rylan Polster Date: Fri, 31 Jul 2020 15:12:41 -0400 Subject: [PATCH] Reword comment above get_pypi_info --- Library/Homebrew/utils/pypi.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/utils/pypi.rb b/Library/Homebrew/utils/pypi.rb index ceee364396..4393d8d217 100644 --- a/Library/Homebrew/utils/pypi.rb +++ b/Library/Homebrew/utils/pypi.rb @@ -21,7 +21,7 @@ module PyPI url end - # Get name, url, and version for a given pypi package + # Get name, url and sha256 for a given pypi package def get_pypi_info(package, version) metadata_url = "https://pypi.org/pypi/#{package}/#{version}/json" out, _, status = curl_output metadata_url, "--location"