From 8f7c289f704e22912a9b60fb9008a3d36195a3a4 Mon Sep 17 00:00:00 2001 From: lza_menace Date: Sat, 15 May 2021 09:04:14 -0700 Subject: [PATCH] fix ref --- suchwow/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/suchwow/app.py b/suchwow/app.py index c4981d5..0a9ee1d 100644 --- a/suchwow/app.py +++ b/suchwow/app.py @@ -103,8 +103,8 @@ def post_reddit(last_hours): if not p.to_reddit: _p = make_post(p) if _p: - _p.to_reddit = True - _p.save() + p.to_reddit = True + p.save() return @app.cli.command("create_accounts")