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