Removed print statement when unpacking

This commit is contained in:
2019-08-20 08:15:21 +02:00
parent 19110a30d5
commit c0010b0970

2
pcurse
View File

@@ -76,6 +76,7 @@ while(scalar(keys %jobs)) {
print '.'; print '.';
} else { } else {
if(exists($jobs{$jobid}->{'retried'})) { if(exists($jobs{$jobid}->{'retried'})) {
print 'E';
push(@errors,'Error during check: '.$jres->{'addon'}->{'name'}) push(@errors,'Error during check: '.$jres->{'addon'}->{'name'})
} else { } else {
print '|'; print '|';
@@ -116,7 +117,6 @@ while(scalar(keys %jobs)) {
$pool->shutdown; $pool->shutdown;
print "\n"; print "\n";
say 'Unpacking updates ' if(scalar(keys %tounpack));
foreach my $unpacking(keys %tounpack) { foreach my $unpacking(keys %tounpack) {
my $id = $tounpack{$unpacking}->[0]; my $id = $tounpack{$unpacking}->[0];
my $file = $tounpack{$unpacking}->[1]; my $file = $tounpack{$unpacking}->[1];