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