aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2014-12-28 02:42:27 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2014-12-28 02:42:27 -0500
commita2108132ed6b55df782eae0fc11149210d5e561d (patch)
tree4a1879061e91847cd6e8631f5a7b2732af9876b4
parent3ba552fb2900ce67409af57f3c7a1f9fda4c10d3 (diff)
parent5f1a9bbec0fad2a9c93ef5bbc6cabd4067f4e2fb (diff)
downloadrails-a2108132ed6b55df782eae0fc11149210d5e561d.tar.gz
rails-a2108132ed6b55df782eae0fc11149210d5e561d.tar.bz2
rails-a2108132ed6b55df782eae0fc11149210d5e561d.zip
Merge pull request #18226 from kamipo/fix_warning_interpreted_as_argument_prefix
Fix warning: `*' interpreted as argument prefix
-rw-r--r--activerecord/lib/active_record/timestamp.rb2
1 files changed, 1 insertions, 1 deletions
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?