From 90894fe346b6d000b769c8201d44947a85aa5f9d Mon Sep 17 00:00:00 2001 From: Mint <> Date: Mon, 6 Mar 2023 02:23:51 +0300 Subject: [PATCH] Option to post in public, this time for real --- pleroma.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pleroma.py b/pleroma.py index a77e412..d55e705 100644 --- a/pleroma.py +++ b/pleroma.py @@ -6,6 +6,7 @@ import json import hashlib import aiohttp from http import HTTPStatus +from third_party import utils def http_session_factory(headers={}): py_version = '.'.join(map(str, sys.version_info)) @@ -94,6 +95,7 @@ class Pleroma: content = ''.join('@' + x + ' ' for x in mentioned_accounts.values()) + content + cfg = utils.load_config(args.cfg) if cfg['public']: visibility = 'public' else: