Skip to content

Commit

Permalink
Fix critic failure on double quoted string without interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuelsmann committed Apr 25, 2021
1 parent 50ce99e commit 0cd107f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/LedgerSMB/Admin/Command/destroy.pm
Expand Up @@ -49,7 +49,8 @@ sub run {
my $dbh = $db->connect;

# Scan databases which could be using the same profile
my $sth = $dbh->prepare("SELECT datname FROM pg_database WHERE NOT datistemplate");
my $sth =
$dbh->prepare('SELECT datname FROM pg_database WHERE NOT datistemplate');

$sth->execute
or die $dbh->errstr;
Expand Down

0 comments on commit 0cd107f

Please sign in to comment.