Skip to content

Commit 26d1663

Browse files
ceng-163: Fix repository pagination (#163)
* Fix repository pagination
1 parent 9b56c93 commit 26d1663

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cloudsmith_cli/cli/commands/repos.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,9 @@ def get(ctx, opts, owner_repo, page, page_size):
127127
if utils.maybe_print_as_json(opts, repos_, page_info):
128128
return
129129

130-
print_repositories(opts=opts, data=repos_, show_list_info=False)
130+
print_repositories(
131+
opts=opts, data=repos_, show_list_info=False, page_info=page_info
132+
)
131133

132134

133135
@repositories.command(aliases=["new"])

0 commit comments

Comments
 (0)