Skip to content

Commit 9ddf206

Browse files
committed
Fix undefined var in CLI script
1 parent 8989c56 commit 9ddf206

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/CliApp/Command/Retrieve/Comments.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ protected function processComments()
224224
{
225225
$this->usePBar
226226
? $progressBar->update($count + 1)
227-
: $this->out($issue->number . '...', false);
227+
: $this->out(($count + 1) . ':', false);
228228

229229
// First, we need to check if the issue is already in the database,
230230
// we're injecting the GitHub comment ID for that

0 commit comments

Comments
 (0)