diff options
author | timeless%mozdev.org <> | 2006-01-05 09:16:20 +0100 |
---|---|---|
committer | timeless%mozdev.org <> | 2006-01-05 09:16:20 +0100 |
commit | 38f51edb6a70ad23e057bd6c2c03ff00dde4c010 (patch) | |
tree | 8c42fbaf77f3befc2ec3ffe529a18c3fae887654 | |
parent | e16ca48833e9dd774a61eaab7ca32c44ce6a4276 (diff) | |
download | bugzilla-38f51edb6a70ad23e057bd6c2c03ff00dde4c010.tar.gz bugzilla-38f51edb6a70ad23e057bd6c2c03ff00dde4c010.tar.xz |
Bug 322412 Typo in error message
r=lpsolit a=justdave
-rw-r--r-- | Bugzilla/DB.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm index a36ca909d..127218843 100644 --- a/Bugzilla/DB.pm +++ b/Bugzilla/DB.pm @@ -768,7 +768,7 @@ sub db_new { my $self = DBI->connect($dsn, $user, $pass, $attributes) or die "\nCan't connect to the database.\nError: $DBI::errstr\n" . " Is your database installed and up and running?\n Do you have" - . "the correct username and password selected in localconfig?\n\n"; + . " the correct username and password selected in localconfig?\n\n"; # RaiseError was only set to 0 so that we could catch the # above "die" condition. |