diff options
author | mkanat%bugzilla.org <> | 2006-05-29 10:10:28 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-05-29 10:10:28 +0000 |
commit | 598ce63e0d2acbc3a2060fe13199742945fac342 (patch) | |
tree | 181bab0e4b312d3fcaa4b0c23db241d637c29906 | |
parent | c922073c79f949a867827e4f302d2ec433bbe85e (diff) | |
download | bugs-598ce63e0d2acbc3a2060fe13199742945fac342.tar bugs-598ce63e0d2acbc3a2060fe13199742945fac342.tar.gz bugs-598ce63e0d2acbc3a2060fe13199742945fac342.tar.bz2 bugs-598ce63e0d2acbc3a2060fe13199742945fac342.tar.xz bugs-598ce63e0d2acbc3a2060fe13199742945fac342.zip |
Fix a test failure caused by a checkin fix that I did on bug 302876.
-rwxr-xr-x | checksetup.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/checksetup.pl b/checksetup.pl index cde8b4945..0909b2d4d 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -376,8 +376,8 @@ foreach my $module (@{$modules}) { } } -print ("\nYou need one of the following DBD modules installed, depending on\n" - . "which database you are using with Bugzilla:\n") unless $silent; +print "\nYou need one of the following DBD modules installed, depending on\n" + . "which database you are using with Bugzilla:\n" unless $silent; my $have_one_dbd = 0; my $db_modules = DB_MODULE; |