From 5f1a9bbec0fad2a9c93ef5bbc6cabd4067f4e2fb Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Sun, 28 Dec 2014 16:05:53 +0900 Subject: Fix warning: `*' interpreted as argument prefix --- activerecord/lib/active_record/timestamp.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activerecord/lib/active_record') diff --git a/activerecord/lib/active_record/timestamp.rb b/activerecord/lib/active_record/timestamp.rb index 4d1d7310af..20e4235788 100644 --- a/activerecord/lib/active_record/timestamp.rb +++ b/activerecord/lib/active_record/timestamp.rb @@ -67,7 +67,7 @@ module ActiveRecord write_attribute(column, current_time) end end - super *args + super(*args) end def should_record_timestamps? -- cgit v1.2.3