From 62073f5d2a8761e9cdf002667bdf0f7862942c13 Mon Sep 17 00:00:00 2001 From: jeancf Date: Thu, 1 Dec 2022 10:33:30 +0100 Subject: [PATCH] Improved INFO messages --- twoot.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/twoot.py b/twoot.py index 962c639..b5945d3 100755 --- a/twoot.py +++ b/twoot.py @@ -581,18 +581,19 @@ def main(argv): logging.info(' twitter_account : ' + TOML['config']['twitter_account']) logging.info(' mastodon_instance : ' + TOML['config']['mastodon_instance']) logging.info(' mastodon_user : ' + TOML['config']['mastodon_user']) + logging.info(' upload_videos : ' + str(TOML['options']['upload_videos'])) logging.info(' post_reply_to : ' + str(TOML['options']['post_reply_to'])) logging.info(' skip_retweets : ' + str(TOML['options']['skip_retweets'])) logging.info(' remove_link_redirections : ' + str(TOML['options']['remove_link_redirections'])) logging.info(' remove_trackers_from_urls: ' + str(TOML['options']['remove_trackers_from_urls'])) - logging.info(' upload_videos : ' + str(TOML['options']['upload_videos'])) + logging.info(' footer : ' + str(TOML['options']['footer'])) logging.info(' remove_original_tweet_ref: ' + str(TOML['options']['remove_original_tweet_ref'])) logging.info(' tweet_max_age : ' + str(TOML['options']['tweet_max_age'])) logging.info(' tweet_delay : ' + str(TOML['options']['tweet_delay'])) logging.info(' toot_cap : ' + str(TOML['options']['toot_cap'])) - logging.info(' twitter substitution : ' + str(TOML['options']['subst_twitter'])) - logging.info(' youtube substitution : ' + str(TOML['options']['subst_youtube'])) - logging.info(' reddit substitution : ' + str(TOML['options']['subst_reddit'])) + logging.info(' subst_twitter : ' + str(TOML['options']['subst_twitter'])) + logging.info(' subst_twitter : ' + str(TOML['options']['subst_youtube'])) + logging.info(' subst_twitter : ' + str(TOML['options']['subst_reddit'])) # Try to open database. If it does not exist, create it sql = sqlite3.connect('twoot.db')