Skip to content

Commit

Permalink
Break long line
Browse files Browse the repository at this point in the history
  • Loading branch information
ihabunek committed Sep 29, 2024
1 parent 3176fa0 commit 3969a15
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion toot/cli/post.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,8 @@ def _get_reply_to(app, user, reply_to, reply_last):
if last_id:
return last_id
else:
raise click.ClickException(f"Cannot reply-last, no previous post ID found for {user.username}@{app.instance}")
user = f"{user.username}@{app.instance}"
raise click.ClickException(f"Cannot reply-last, no previous post ID found for {user}")

return reply_to

Expand Down

0 comments on commit 3969a15

Please sign in to comment.