From 14d698f0570d57dc6af799a532273b36ce318374 Mon Sep 17 00:00:00 2001 From: jeancf Date: Fri, 18 Nov 2022 17:26:40 +0100 Subject: [PATCH] Removed forgotten debug code --- twoot.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/twoot.py b/twoot.py index 0a2eb6f..e124d72 100755 --- a/twoot.py +++ b/twoot.py @@ -363,8 +363,6 @@ def main(argv): print('Malformed config file') exit(-1) - print(toml) - # Override config file parameter values with command-line values if provided if args['t'] is not None: toml['config']['twitter_account'] = args['t'] @@ -428,11 +426,6 @@ def main(argv): logging.info(' -d ' + str(toml['options']['tweet_delay'])) logging.info(' -c ' + str(toml['options']['toot_cap'])) - print(toml) - - # DEBUG CONFIG - # exit(1) - # Try to open database. If it does not exist, create it sql = sqlite3.connect('twoot.db') db = sql.cursor()