Remove outdated mechanic for adding additional email addresses to crash reports from several apps. Commit ready for merge.
- Legacy-Id: 19298
This commit is contained in:
parent
24ec2ffc42
commit
24782163cb
|
@ -1,20 +1,3 @@
|
||||||
# Copyright The IETF Trust 2010-2020, All Rights Reserved
|
# Copyright The IETF Trust 2010-2020, All Rights Reserved
|
||||||
# coding: latin-1
|
# coding: latin-1
|
||||||
|
|
||||||
|
|
||||||
from types import ModuleType
|
|
||||||
|
|
||||||
# These people will be sent a stack trace if there's an uncaught exception in
|
|
||||||
# code any of the modules imported above:
|
|
||||||
DEBUG_EMAILS = [
|
|
||||||
('Tero Kivinen', 'kivinen@iki.fi'),
|
|
||||||
]
|
|
||||||
|
|
||||||
for k in list(locals().keys()):
|
|
||||||
m = locals()[k]
|
|
||||||
if isinstance(m, ModuleType):
|
|
||||||
if hasattr(m, "DEBUG_EMAILS"):
|
|
||||||
DEBUG_EMAILS += list(getattr(m, "DEBUG_EMAILS"))
|
|
||||||
setattr(m, "DEBUG_EMAILS", DEBUG_EMAILS)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,20 +1,3 @@
|
||||||
# Copyright The IETF Trust 2007-2020, All Rights Reserved
|
# Copyright The IETF Trust 2007-2020, All Rights Reserved
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
|
||||||
from types import ModuleType
|
|
||||||
|
|
||||||
# These people will be sent a stack trace if there's an uncaught exception in
|
|
||||||
# code any of the modules imported above:
|
|
||||||
DEBUG_EMAILS = [
|
|
||||||
('Ole Laursen', 'olau@iola.dk'),
|
|
||||||
]
|
|
||||||
|
|
||||||
for k in list(locals().keys()):
|
|
||||||
m = locals()[k]
|
|
||||||
if isinstance(m, ModuleType):
|
|
||||||
if hasattr(m, "DEBUG_EMAILS"):
|
|
||||||
DEBUG_EMAILS += list(getattr(m, "DEBUG_EMAILS"))
|
|
||||||
setattr(m, "DEBUG_EMAILS", DEBUG_EMAILS)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2,18 +2,3 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
|
||||||
from types import ModuleType
|
|
||||||
|
|
||||||
# These people will be sent a stack trace if there's an uncaught exception in
|
|
||||||
# code any of the modules imported above:
|
|
||||||
DEBUG_EMAILS = [
|
|
||||||
('Emilio A. Sánchez', 'esanchez@yaco.es'),
|
|
||||||
]
|
|
||||||
|
|
||||||
for k in list(locals().keys()):
|
|
||||||
m = locals()[k]
|
|
||||||
if isinstance(m, ModuleType):
|
|
||||||
if hasattr(m, "DEBUG_EMAILS"):
|
|
||||||
DEBUG_EMAILS += list(getattr(m, "DEBUG_EMAILS"))
|
|
||||||
setattr(m, "DEBUG_EMAILS", DEBUG_EMAILS)
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue