diff options
author | Sean Griffin <sean@thoughtbot.com> | 2014-12-23 09:13:56 -0700 |
---|---|---|
committer | Sean Griffin <sean@thoughtbot.com> | 2014-12-23 09:13:56 -0700 |
commit | affae7d904e1dd91c89f8126358a2d2fbbe49eeb (patch) | |
tree | 6c294a9e08636eb200c4629829962d619b776785 /activerecord/lib | |
parent | c81a74c9727327808aa0b5f31e2b39f220c657f5 (diff) | |
download | rails-affae7d904e1dd91c89f8126358a2d2fbbe49eeb.tar.gz rails-affae7d904e1dd91c89f8126358a2d2fbbe49eeb.tar.bz2 rails-affae7d904e1dd91c89f8126358a2d2fbbe49eeb.zip |
Fix syntax warning
This isn't Seattle.rb, @senny. ;)
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/tasks/database_tasks.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/tasks/database_tasks.rb b/activerecord/lib/active_record/tasks/database_tasks.rb index a3a2993220..69aceb66b1 100644 --- a/activerecord/lib/active_record/tasks/database_tasks.rb +++ b/activerecord/lib/active_record/tasks/database_tasks.rb @@ -209,7 +209,7 @@ module ActiveRecord This method was renamed to `#load_schema` and will be removed in the future. Use `#load_schema` instead. MSG - load_schema *args + load_schema(*args) end def schema_file(format = ActiveSupport::Base.schema_format) |