diff options
author | Jonas <jonas@freesources.org> | 2023-11-14 21:04:16 +0100 |
---|---|---|
committer | Jonas <jonas@freesources.org> | 2023-11-14 21:04:27 +0100 |
commit | af4287d8a37ef216975df242faa81a22277d4306 (patch) | |
tree | f7d1ae98b842b366a65e59876191b859bea80bab /core | |
parent | 490f5cc4ec5add02c422ab52b49d4a1b644b80d6 (diff) | |
download | nextcloud-server-af4287d8a37ef216975df242faa81a22277d4306.tar.gz nextcloud-server-af4287d8a37ef216975df242faa81a22277d4306.zip |
Update core/Command/Background/ListCommand.php
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: Jonas <jonas@freesources.org>
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/Background/ListCommand.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Background/ListCommand.php b/core/Command/Background/ListCommand.php index 4d5329ec22f..ef5b478a197 100644 --- a/core/Command/Background/ListCommand.php +++ b/core/Command/Background/ListCommand.php @@ -70,7 +70,7 @@ class ListCommand extends Base { $jobsInfo = $this->formatJobs($this->jobList->getJobsIterator($input->getOption('class'), $limit, (int)$input->getOption('offset'))); $this->writeTableInOutputFormat($input, $output, $jobsInfo); if ($input->getOption('output') === self::OUTPUT_FORMAT_PLAIN && count($jobsInfo) >= $limit) { - $output->writeln("\n<comment>Output is currently limited to first " . $limit . " jobs. Specify `-l, --limit[=LIMIT]` to override.</comment>"); + $output->writeln("\n<comment>Output is currently limited to " . $limit . " jobs. Specify `-l, --limit[=LIMIT]` to override.</comment>"); } return 0; } |