fix post comment meta

This commit is contained in:
lza_menace 2020-10-15 15:00:46 -07:00
parent c89cabaccc
commit 7ed0033919
1 changed files with 4 additions and 4 deletions

View File

@ -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)