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);
|
||||
say $chan_output "Pending queue:";
|
||||
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;
|
||||
next;
|
||||
|
|
Reference in a new issue