summaryrefslogtreecommitdiffstats
path: root/config-db/OpenSLX/ConfigDB.pm
diff options
context:
space:
mode:
Diffstat (limited to 'config-db/OpenSLX/ConfigDB.pm')
-rw-r--r--config-db/OpenSLX/ConfigDB.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/config-db/OpenSLX/ConfigDB.pm b/config-db/OpenSLX/ConfigDB.pm
index 3323ed04..fce953b6 100644
--- a/config-db/OpenSLX/ConfigDB.pm
+++ b/config-db/OpenSLX/ConfigDB.pm
@@ -178,16 +178,15 @@ sub connectConfigDB
my $dbModule = "OpenSLX::MetaDB::$dbType";
unless (eval "require $dbModule") {
if ($! == 2) {
- die _tr("Unable to load DB-module <%s>\n"
- ."that database type is not supported (yet?)\n", $dbModule);
+ die _tr("Unable to load DB-module <%s>\nthat database type is not supported (yet?)\n",
+ $dbModule);
} else {
die _tr("Unable to load DB-module <%s> (%s)\n", $dbModule, $@);
}
}
my $modVersion = $dbModule->VERSION;
if ($modVersion < $VERSION) {
- confess _tr('Could not load module <%s> (Version <%s> required, '
- .'but <%s> found)',
+ confess _tr('Could not load module <%s> (Version <%s> required, but <%s> found)',
$dbModule, $VERSION, $modVersion);
}
$dbModule->import;