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