Skip to content

Commit 3969a15

Browse files
committed
Break long line
1 parent 3176fa0 commit 3969a15

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

toot/cli/post.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,8 @@ def _get_reply_to(app, user, reply_to, reply_last):
265265
if last_id:
266266
return last_id
267267
else:
268-
raise click.ClickException(f"Cannot reply-last, no previous post ID found for {user.username}@{app.instance}")
268+
user = f"{user.username}@{app.instance}"
269+
raise click.ClickException(f"Cannot reply-last, no previous post ID found for {user}")
269270

270271
return reply_to
271272

0 commit comments

Comments
 (0)