Removed forgotten debug code

This commit is contained in:
jeancf 2022-11-18 17:26:40 +01:00
parent 96a794e273
commit 14d698f057

View File

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