Преглед на файлове

Added try-except around make_post.

Makes it so that we can always save recent activity, as if a later upload fails
we don't save that we got to post earlier ones.
master
Trey Del Bonis преди 2 години
родител
ревизия
ba2e97c323
променени са 1 файла, в които са добавени 4 реда и са изтрити 1 реда
  1. 4
    1
      main.py

+ 4
- 1
main.py Целия файл

@@ -190,7 +190,10 @@ def main():

for p in okps:
print('posting', p['rid'], '-', p['title'])
make_post(masto, p)
try:
make_post(masto, p)
except Exception as e:
print('error posting:', p['rid'], str(e))

save_recents(newrecents)


Loading…
Отказ
Запис