mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Removed possible UnboundLocalError that would (a) crash the bot, and (b) never be reported.
This commit is contained in:
parent
14f008df26
commit
fa1115327f
@ -161,8 +161,11 @@ def recoverableException(type='detailed'):
|
||||
else:
|
||||
del lastTimes[0]
|
||||
try:
|
||||
if type == 'detailed' and conf.detailedTracebacks:
|
||||
text = cgitb.text((E, e, tb))
|
||||
if type == 'detailed':
|
||||
if conf.detailedTracebacks:
|
||||
text = cgitb.text((E, e, tb))
|
||||
else:
|
||||
text = ''.join(traceback.format_exception(E, e, tb))
|
||||
elif type == 'normal':
|
||||
text = ''.join(traceback.format_exception(E, e, tb))
|
||||
elif type == 'terse':
|
||||
|
Loading…
Reference in New Issue
Block a user