Skip to content

Commit

Permalink
Remove outdated mechanic for adding additional email addresses to cra…
Browse files Browse the repository at this point in the history
…sh reports from several apps. Commit ready for merge.

 - Legacy-Id: 19298
  • Loading branch information
rjsparks committed Aug 11, 2021
1 parent 24ec2ff commit 2478216
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 49 deletions.
17 changes: 0 additions & 17 deletions ietf/cookies/__init__.py
@@ -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)


17 changes: 0 additions & 17 deletions ietf/iesg/__init__.py
@@ -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)


15 changes: 0 additions & 15 deletions ietf/liaisons/__init__.py
Expand Up @@ -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)

0 comments on commit 2478216

Please sign in to comment.