logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 322cbf83c8ce92ff7cd4c26265a36060b37f134f
parent: fc99d11703cda77d5aad406567e0c23e2b971f7c
Author: esetomo <s-tomo@s-tomo.jp>
Date:   Wed, 26 Apr 2017 03:35:20 +0900

fix typo on daily tasks logging (#2450)


Diffstat:

Mlib/tasks/mastodon.rake4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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'