mirror of
https://git.wownero.com/lza_menace/suchwow.git
synced 2024-08-15 01:03:19 +00:00
add print stmt for reddit posting
This commit is contained in:
parent
844c8356e7
commit
208fa3bf2e
1 changed files with 2 additions and 0 deletions
|
@ -77,6 +77,7 @@ def reddit_recent():
|
|||
reddit_post = Reddit().post(title, url)
|
||||
post.reddit_url = reddit_post.url
|
||||
post.save()
|
||||
print(f"Posted #{post.id} to Reddit - {reddit_post.url}")
|
||||
return True
|
||||
|
||||
@app.cli.command("reddit_random")
|
||||
|
@ -89,6 +90,7 @@ def reddit_random():
|
|||
reddit_post = Reddit().post(title, url)
|
||||
post.reddit_url = reddit_post.url
|
||||
post.save()
|
||||
print(f"Posted #{post.id} to Reddit - {reddit_post.url}")
|
||||
return True
|
||||
|
||||
@app.cli.command("payout_users")
|
||||
|
|
Loading…
Reference in a new issue