Catch all possible Reddit API exceptions

This commit is contained in:
Tanner
2023-03-15 21:16:37 +00:00
parent a56d5e91aa
commit b051794a0c
+1 -4
View File
@@ -32,10 +32,7 @@ def feed():
return [x.id for x in reddit.subreddit(subs).hot()] return [x.id for x in reddit.subreddit(subs).hot()]
except KeyboardInterrupt: except KeyboardInterrupt:
raise raise
except PRAWException as e: except BaseException as e:
logging.critical('Problem hitting reddit API: {}'.format(str(e)))
return []
except PrawcoreException as e:
logging.critical('Problem hitting reddit API: {}'.format(str(e))) logging.critical('Problem hitting reddit API: {}'.format(str(e)))
return [] return []