Skip to content

Commit 2478216

Browse files
committed
Remove outdated mechanic for adding additional email addresses to crash reports from several apps. Commit ready for merge.
- Legacy-Id: 19298
1 parent 24ec2ff commit 2478216

3 files changed

Lines changed: 0 additions & 49 deletions

File tree

ietf/cookies/__init__.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
11
# Copyright The IETF Trust 2010-2020, All Rights Reserved
22
# coding: latin-1
33

4-
5-
from types import ModuleType
6-
7-
# These people will be sent a stack trace if there's an uncaught exception in
8-
# code any of the modules imported above:
9-
DEBUG_EMAILS = [
10-
('Tero Kivinen', 'kivinen@iki.fi'),
11-
]
12-
13-
for k in list(locals().keys()):
14-
m = locals()[k]
15-
if isinstance(m, ModuleType):
16-
if hasattr(m, "DEBUG_EMAILS"):
17-
DEBUG_EMAILS += list(getattr(m, "DEBUG_EMAILS"))
18-
setattr(m, "DEBUG_EMAILS", DEBUG_EMAILS)
19-
20-

ietf/iesg/__init__.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
11
# Copyright The IETF Trust 2007-2020, All Rights Reserved
22
# -*- coding: utf-8 -*-
33

4-
5-
from types import ModuleType
6-
7-
# These people will be sent a stack trace if there's an uncaught exception in
8-
# code any of the modules imported above:
9-
DEBUG_EMAILS = [
10-
('Ole Laursen', 'olau@iola.dk'),
11-
]
12-
13-
for k in list(locals().keys()):
14-
m = locals()[k]
15-
if isinstance(m, ModuleType):
16-
if hasattr(m, "DEBUG_EMAILS"):
17-
DEBUG_EMAILS += list(getattr(m, "DEBUG_EMAILS"))
18-
setattr(m, "DEBUG_EMAILS", DEBUG_EMAILS)
19-
20-

ietf/liaisons/__init__.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,3 @@
22
# -*- coding: utf-8 -*-
33

44

5-
from types import ModuleType
6-
7-
# These people will be sent a stack trace if there's an uncaught exception in
8-
# code any of the modules imported above:
9-
DEBUG_EMAILS = [
10-
('Emilio A. Sánchez', 'esanchez@yaco.es'),
11-
]
12-
13-
for k in list(locals().keys()):
14-
m = locals()[k]
15-
if isinstance(m, ModuleType):
16-
if hasattr(m, "DEBUG_EMAILS"):
17-
DEBUG_EMAILS += list(getattr(m, "DEBUG_EMAILS"))
18-
setattr(m, "DEBUG_EMAILS", DEBUG_EMAILS)
19-

0 commit comments

Comments
 (0)