diff --git a/suchwow/reddit.py b/suchwow/reddit.py index 5b6fd6b..584df01 100644 --- a/suchwow/reddit.py +++ b/suchwow/reddit.py @@ -37,10 +37,10 @@ def make_post(post): title = f"SuchWow #{post.id} - {post.title}" url = url_for('post.uploaded_file', filename=post.image_name) _comment = [ - f"Submitter: {post.submitter}\n", - f"Timestamp (UTC): {post.timestamp}\n", - "\nShow this poster some love by sending WOW to the following address:\n\n", - f"{wallet.get_address(account=post.account_index)}" + f"Submitter: {post.submitter}\n\n", + f"Timestamp (UTC): {post.timestamp}\n\n", + "Show this poster some love by sending WOW to the following address:\n\n", + f"`{wallet.get_address(account=post.account_index)}`" ] comment = "".join(_comment) reddit_post = Reddit().post(title, url)