From 26d16630c2f5d07a092de95f3c157d7ca28a8910 Mon Sep 17 00:00:00 2001 From: Bartosz Blizniak <55028730+BartoszBlizniak@users.noreply.github.com> Date: Wed, 10 Apr 2024 16:23:40 +0100 Subject: [PATCH] ceng-163: Fix repository pagination (#163) * Fix repository pagination --- cloudsmith_cli/cli/commands/repos.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cloudsmith_cli/cli/commands/repos.py b/cloudsmith_cli/cli/commands/repos.py index dc9f291..db11c14 100644 --- a/cloudsmith_cli/cli/commands/repos.py +++ b/cloudsmith_cli/cli/commands/repos.py @@ -127,7 +127,9 @@ def get(ctx, opts, owner_repo, page, page_size): if utils.maybe_print_as_json(opts, repos_, page_info): return - print_repositories(opts=opts, data=repos_, show_list_info=False) + print_repositories( + opts=opts, data=repos_, show_list_info=False, page_info=page_info + ) @repositories.command(aliases=["new"])