From 7ed00339193e320f2d2ca5169c7aa49285cfdb6e Mon Sep 17 00:00:00 2001 From: lza_menace Date: Thu, 15 Oct 2020 15:00:46 -0700 Subject: [PATCH] fix post comment meta --- suchwow/reddit.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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)