Remove redundant exception message behavior.
This commit is contained in:
parent
3e69d39aef
commit
468e232d46
|
@ -46,7 +46,7 @@ Or copy and paste this link into your browser: {reset_link}
|
||||||
|
|
||||||
|
|
||||||
def exception_alert(e: Exception):
|
def exception_alert(e: Exception):
|
||||||
exception_text = 'Exception Message: ' + str(e) + '\n' + ''.join(traceback.format_exception(None, e, e.__traceback__))
|
exception_text = ''.join(traceback.format_exception(None, e, e.__traceback__))
|
||||||
data = {
|
data = {
|
||||||
'Messages': [
|
'Messages': [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue