From 0176ca846407e3cdfe0fc66576cce4a0fc2b5b6f Mon Sep 17 00:00:00 2001 From: markwieczorek Date: Sat, 7 Dec 2024 23:04:12 +0100 Subject: [PATCH] Update atproto.py Remove extra space in bridge text --- atproto.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atproto.py b/atproto.py index c790ea82..49688a2f 100644 --- a/atproto.py +++ b/atproto.py @@ -960,9 +960,9 @@ def add_source_links(cls, actor, obj, from_user): if from_user.LABEL == 'web': # link web users to their user pages - source_links = f'[bridged from {url}{proto_phrase}: https://{PRIMARY_DOMAIN}{from_user.user_page_path()} ]' + source_links = f'[bridged from {url}{proto_phrase}: https://{PRIMARY_DOMAIN}{from_user.user_page_path()}]' else: - source_links = f'[bridged from {url}{proto_phrase} by https://{PRIMARY_DOMAIN}/ ]' + source_links = f'[bridged from {url}{proto_phrase} by https://{PRIMARY_DOMAIN}/]' if summary: source_links = '\n\n' + source_links