Skip to content

Commit

Permalink
ceng-163: Fix repository pagination (#163)
Browse files Browse the repository at this point in the history
* Fix repository pagination
  • Loading branch information
BartoszBlizniak authored Apr 10, 2024
1 parent 9b56c93 commit 26d1663
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cloudsmith_cli/cli/commands/repos.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"])
Expand Down

0 comments on commit 26d1663

Please sign in to comment.