From d1283549da0b285db7b6fe2b8a032a0ebd5ec02a Mon Sep 17 00:00:00 2001 From: Jack Haden-Enneking Date: Mon, 3 Oct 2022 09:47:56 -0700 Subject: [PATCH] change to epoch Co-authored-by: Mike McQuaid --- Library/Homebrew/formula.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 8ff5906d37..de6596ff15 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -2130,7 +2130,7 @@ class Formula "used_options" => tab.used_options.as_flags, "built_as_bottle" => tab.built_as_bottle, "poured_from_bottle" => tab.poured_from_bottle, - "time" => Time.at(tab.time).strftime("%Y-%m-%d %H:%M:%S"), + "time" => tab.time, "runtime_dependencies" => tab.runtime_dependencies, "installed_as_dependency" => tab.installed_as_dependency, "installed_on_request" => tab.installed_on_request,