Skip to content

Commit edc1ad5

Browse files
committed
Another flake8 fix
1 parent 4829d36 commit edc1ad5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

homu/server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,8 +342,8 @@ def rollup(user_gh, state, repo_label, repo_cfg, repo):
342342

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

348348
try:
349349
pull = base_repo.create_pull(

0 commit comments

Comments
 (0)