From: esetomo Date: Tue, 25 Apr 2017 18:35:20 +0000 (+0900) Subject: fix typo on daily tasks logging (#2450) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=322cbf83c8ce92ff7cd4c26265a36060b37f134f;p=mastodon.git fix typo on daily tasks logging (#2450) --- diff --git a/lib/tasks/mastodon.rake b/lib/tasks/mastodon.rake index df8ceb36f..2f2d10a48 100644 --- a/lib/tasks/mastodon.rake +++ b/lib/tasks/mastodon.rake @@ -9,10 +9,10 @@ namespace :mastodon do mastodon:users:clear mastodon:push:refresh ).each do |task| - puts "Starting #{task} at #{Time.utc.now}" + puts "Starting #{task} at #{Time.now.utc}" Rake::Task[task].invoke end - puts "Completed daily tasks at #{Time.utc.now}" + puts "Completed daily tasks at #{Time.now.utc}" end desc 'Turn a user into an admin, identified by the USERNAME environment variable'