Fix bad indenting and add two seconds sleep

This commit is contained in:
spla 2021-04-09 11:35:47 +02:00
pare 9ab7d02526
commit e8a5ec6493
S'han modificat 2 arxius amb 4 adicions i 1 eliminacions

Veure arxiu

@ -3,6 +3,7 @@ import feedparser
from mastodon import Mastodon
import psycopg2
import sys
import time
###############################################################################
# INITIALISATION
@ -111,6 +112,8 @@ if __name__ == '__main__':
mastodon.status_post(toot_text, in_reply_to_id=None,)
time.sleep(2)
#########################################################
insert_line = 'INSERT INTO feeds(id, link) VALUES (%s, %s)'