Skip to content

Commit 2ffd9d8

Browse files
committed
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 2478216
2 parents 0dbd389 + 2478216 commit 2ffd9d8

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)