aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorDave Rothlisberger <dave@rothlis.net>2008-08-04 14:48:47 -0500
committerDave Rothlisberger <dave@rothlis.net>2008-08-04 14:48:47 -0500
commit43334d63844da05f2cde53c4f77c829e582163be (patch)
tree8eec6e6aeaa9a6a9f26749493eb1b31ef6a61018 /railties
parentc38dc3cd6de73e573823d6b1a83cafd1492ae018 (diff)
downloadrails-43334d63844da05f2cde53c4f77c829e582163be.tar.gz
rails-43334d63844da05f2cde53c4f77c829e582163be.tar.bz2
rails-43334d63844da05f2cde53c4f77c829e582163be.zip
Corrected the command-line help text for script/dbconsole.
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/commands/dbconsole.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/commands/dbconsole.rb b/railties/lib/commands/dbconsole.rb
index 442526ae32..e0a2abe73d 100644
--- a/railties/lib/commands/dbconsole.rb
+++ b/railties/lib/commands/dbconsole.rb
@@ -6,7 +6,7 @@ include_password = false
OptionParser.new do |opt|
opt.banner = "Usage: dbconsole [options] [environment]"
- opt.on("-p", "--include-password", "Automatically provide the database from database.yml") do |v|
+ opt.on("-p", "--include-password", "Automatically provide the password from database.yml") do |v|
include_password = true
end
opt.parse!(ARGV)