aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2014-12-23 09:13:56 -0700
committerSean Griffin <sean@thoughtbot.com>2014-12-23 09:13:56 -0700
commitaffae7d904e1dd91c89f8126358a2d2fbbe49eeb (patch)
tree6c294a9e08636eb200c4629829962d619b776785
parentc81a74c9727327808aa0b5f31e2b39f220c657f5 (diff)
downloadrails-affae7d904e1dd91c89f8126358a2d2fbbe49eeb.tar.gz
rails-affae7d904e1dd91c89f8126358a2d2fbbe49eeb.tar.bz2
rails-affae7d904e1dd91c89f8126358a2d2fbbe49eeb.zip
Fix syntax warning
This isn't Seattle.rb, @senny. ;)
-rw-r--r--activerecord/lib/active_record/tasks/database_tasks.rb2
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)