Skip to content

Commit

Permalink
fix warning: don't put space before argument parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
maxhodak committed Jun 20, 2011
1 parent bec9ecf commit ffed84f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tasks/yaml_db_tasks.rake
Expand Up @@ -32,7 +32,7 @@ namespace :db do
task :load => :environment do
format_class = ENV['class'] || "YamlDb::Helper"
helper = format_class.constantize
SerializationHelper::Base.new(helper).load (db_dump_data_file helper.extension)
SerializationHelper::Base.new(helper).load(db_dump_data_file helper.extension)
end

desc "Load contents of db/data_dir into database"
Expand Down

0 comments on commit ffed84f

Please sign in to comment.