restored friendly error messages
This commit is contained in:
parent
26541940b7
commit
537dd7993b
1 changed files with 4 additions and 4 deletions
8
main.py
8
main.py
|
@ -177,7 +177,7 @@ for f in following:
|
||||||
|
|
||||||
print("Downloading and parsing toots", end='', flush=True)
|
print("Downloading and parsing toots", end='', flush=True)
|
||||||
done = False
|
done = False
|
||||||
if True:
|
try:
|
||||||
while not done and len(j['orderedItems']) > 0:
|
while not done and len(j['orderedItems']) > 0:
|
||||||
for oi in j['orderedItems']:
|
for oi in j['orderedItems']:
|
||||||
# if (not pleroma and oi['type'] == "Create") or (pleroma and oi['to']['type'] == "Create"):
|
# if (not pleroma and oi['type'] == "Create") or (pleroma and oi['to']['type'] == "Create"):
|
||||||
|
@ -215,9 +215,9 @@ for f in following:
|
||||||
print('.', end='', flush=True)
|
print('.', end='', flush=True)
|
||||||
print(" Done!")
|
print(" Done!")
|
||||||
db.commit()
|
db.commit()
|
||||||
# except:
|
except:
|
||||||
# print("Encountered an error! Saving toots to database and continuing.")
|
print("Encountered an error! Saving toots to database and continuing.")
|
||||||
# db.commit()
|
db.commit()
|
||||||
# db.close()
|
# db.close()
|
||||||
|
|
||||||
print("Done!")
|
print("Done!")
|
||||||
|
|
Loading…
Reference in a new issue