Merged in [19298] from rjsparks@nostrum.com:

Remove outdated mechanic for adding additional email addresses to crash reports from several apps.
 - Legacy-Id: 19321
Note: SVN reference [19298] has been migrated to Git commit 24782163cb
This commit is contained in:
Robert Sparks 2021-09-03 17:01:01 +00:00
commit 2ffd9d88de
3 changed files with 0 additions and 49 deletions

View file

@ -1,20 +1,3 @@
# Copyright The IETF Trust 2010-2020, All Rights Reserved
# 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)

View file

@ -1,20 +1,3 @@
# Copyright The IETF Trust 2007-2020, All Rights Reserved
# -*- 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)

View file

@ -2,18 +2,3 @@
# -*- 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)