Skip to content

Commit

Permalink
Fix warning formatting
Browse files Browse the repository at this point in the history
Missing a space and a `f` here

Reviewers: jerry,brian-k
Topic: revup-f
  • Loading branch information
aaron-skydio committed Aug 5, 2024
1 parent ffbeb43 commit c4940b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions revup/topic_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -746,8 +746,8 @@ async def mark_rebases(self, skip_rebase: bool) -> None:
and review.remote_base != review.pr_info.baseRef
):
logging.warning(
f"Branch {review.remote_head} was merged into {review.pr_info.baseRef}"
"instead of {review.remote_base} as expected!"
f"Branch {review.remote_head} was merged into {review.pr_info.baseRef} "
f"instead of {review.remote_base} as expected!"
)
# NOTE: This may not iteract well with the check at the end of create_commits
# but they are both corner cases and the worst that could happen is we fail to
Expand Down

0 comments on commit c4940b3

Please sign in to comment.