Closed elieux closed 3 months ago
Where did you get this Git plugin?
It's a fork on which I did some maintenance, see here: https://github.com/elieux/supybot-git
Oh, damn, I didn't notice the traceback call was in the plugin's code. I'm sorry, this is not an issue in Limnoria.
yeah, you need to replace traceback.print_exc(e)
with either traceback.print_exception(e)
or traceback.print_exc()
.
Or, even better, remove the line entirely and replace log_error('Exception in _poll(): %s' % str(e))
with self.log.exception('Exception in _poll()
which will take care of printing the exception too.
Hey. While I was upgrading my plugins, I encountered this (during handling an AttributeError from the plugin). This is on Limnoria v2024.5.30 and Python v3.12.3. I couldn't find any report of this. Let me know if you need more details.