diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-08-31 16:45:49 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-08-31 16:45:49 +0000 |
commit | d06ea5bd1b00a0547e5afe4544baf28038ac95e4 (patch) | |
tree | 2828f9d6df60ef64899ff97f505a30439a3369cd /urpm | |
parent | 377b23ba5067fc180fe227bdd9302643c720746f (diff) | |
download | urpmi-d06ea5bd1b00a0547e5afe4544baf28038ac95e4.tar urpmi-d06ea5bd1b00a0547e5afe4544baf28038ac95e4.tar.gz urpmi-d06ea5bd1b00a0547e5afe4544baf28038ac95e4.tar.bz2 urpmi-d06ea5bd1b00a0547e5afe4544baf28038ac95e4.tar.xz urpmi-d06ea5bd1b00a0547e5afe4544baf28038ac95e4.zip |
perl_checker cleanup
Diffstat (limited to 'urpm')
-rw-r--r-- | urpm/install.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/install.pm b/urpm/install.pm index c539af3c..1171579c 100644 --- a/urpm/install.pm +++ b/urpm/install.pm @@ -195,7 +195,7 @@ sub install { my $db = urpm::db_open_or_die_($urpm, !$options{test}); #- open in read/write mode unless testing installation. - my $trans = $db->create_transaction(); + my $trans = $db->create_transaction; if ($trans) { sys_log("transaction on %s (remove=%d, install=%d, upgrade=%d)", $urpm->{root} || '/', scalar(@{$remove || []}), scalar(values %$install), scalar(values %$upgrade)); $urpm->{log}(N("created transaction for installing on %s (remove=%d, install=%d, upgrade=%d)", $urpm->{root} || '/', |