Skip to content

Commit 8da36da

Browse files
committed
Fix string conversion for pr query string
1 parent 8d61a7c commit 8da36da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

homu/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def rollup(user_gh, state, repo_label, repo_cfg, repo):
341341
base_url = g.cfg['web'].get('canonical_url')
342342

343343
if base_url:
344-
pr_list = ','.join(x.num for x in successes)
344+
pr_list = ','.join(str(x.num) for x in successes)
345345
body += '\n\n[Create a similar rollup]({}/queue/{}?prs={})'.format(base_url, repo_label, pr_list)
346346

347347
try:

0 commit comments

Comments
 (0)