You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am sorry I did not save the error message, but I got an error when trying to clear votes on posts that were older than 6 months. I think it only occurred on submissions and not comments.
I received and error 400 bad request then another error with exception handling. I looked through the code to try and see what the issue was.
I suspect the error is on line 138
self._logger.debug("Couldn't clear vote on {item}".format(item=item))
I think changing it to
self._logger.debug("Couldn't clear vote on {}".format(item=item))
would fix the issue.
I ran the program sorted by new and once I got to that issue I changed settings so it would not clear the vote any longer. Once I did that the program finished as expected.
Please let me know if I am off on this.
Edit: Wanted to add that I no longer have an account on reddit that is over 6 months, so I am unable to test.
The text was updated successfully, but these errors were encountered:
I am sorry I did not save the error message, but I got an error when trying to clear votes on posts that were older than 6 months. I think it only occurred on submissions and not comments.
I received and error 400 bad request then another error with exception handling. I looked through the code to try and see what the issue was.
I suspect the error is on line 138
self._logger.debug("Couldn't clear vote on {item}".format(item=item))
I think changing it to
self._logger.debug("Couldn't clear vote on {}".format(item=item))
would fix the issue.
I ran the program sorted by new and once I got to that issue I changed settings so it would not clear the vote any longer. Once I did that the program finished as expected.
Please let me know if I am off on this.
Edit: Wanted to add that I no longer have an account on reddit that is over 6 months, so I am unable to test.
The text was updated successfully, but these errors were encountered: