Merge pull request #18226 from kamipo/fix_warning_interpreted_as_argument_prefix

Fix warning: `*' interpreted as argument prefix
This commit is contained in:
Guillermo Iguaran 2014-12-28 02:42:27 -05:00
commit a2108132ed

@ -67,7 +67,7 @@ def _update_record(*args, touch: true, **options)
write_attribute(column, current_time)
end
end
super *args
super(*args)
end
def should_record_timestamps?