about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authoresetomo <s-tomo@s-tomo.jp>2017-04-26 03:35:20 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-04-25 20:35:20 +0200
commit322cbf83c8ce92ff7cd4c26265a36060b37f134f (patch)
treeda30dde250a6d9018a46e01af9f0a9cc7fad6404 /lib
parentfc99d11703cda77d5aad406567e0c23e2b971f7c (diff)
fix typo on daily tasks logging (#2450)
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/mastodon.rake4
1 files changed, 2 insertions, 2 deletions
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'