From 3969a150293580e7ba421e6269a4ff72476e7351 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Sun, 29 Sep 2024 09:40:37 +0200 Subject: [PATCH] Break long line --- toot/cli/post.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/toot/cli/post.py b/toot/cli/post.py index e82c402f..3daf911d 100644 --- a/toot/cli/post.py +++ b/toot/cli/post.py @@ -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