Fix bad indenting and add two seconds sleep
This commit is contained in:
pare
9ab7d02526
commit
e8a5ec6493
S'han modificat 2 arxius amb 4 adicions i 1 eliminacions
|
@ -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)'
|
||||
|
|
2
setup.py
2
setup.py
|
@ -124,7 +124,7 @@ def log_in():
|
|||
if os.path.exists("app_clientcred.txt"):
|
||||
print("Removing app_clientcred.txt temp file..")
|
||||
os.remove("app_clientcred.txt")
|
||||
if os.path.exists("app_usercred.txt"):
|
||||
if os.path.exists("app_usercred.txt"):
|
||||
print("Removing app_usercred.txt temp file..")
|
||||
os.remove("app_usercred.txt")
|
||||
print("Secrets setup done!\n")
|
||||
|
|
Loading…
Referencia en una nova incidència