Fix show command
This commit is contained in:
parent
b19e5bd03e
commit
471b80c572
1 changed files with 1 additions and 1 deletions
|
@ -350,7 +350,7 @@ sub parse($$;$)
|
||||||
lock($queue);
|
lock($queue);
|
||||||
say $chan_output "Pending queue:";
|
say $chan_output "Pending queue:";
|
||||||
for ($i = 0; $i < $queue->pending(); $i++) {
|
for ($i = 0; $i < $queue->pending(); $i++) {
|
||||||
say $chan_output "$i. $queue->peek($i)";
|
say $chan_output "$i. ", $queue->peek($i);
|
||||||
}
|
}
|
||||||
say $chan_output "empty!" if $queue->pending() == 0;
|
say $chan_output "empty!" if $queue->pending() == 0;
|
||||||
next;
|
next;
|
||||||
|
|
Reference in a new issue