Skip to content

Commit 1c9ecd1

Browse files
committed
Fix Bunch implementation
1 parent 46642d5 commit 1c9ecd1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pytest_localserver/smtp.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ class Bunch:
5757
def __init__(self, **kwds):
5858
vars(self).update(kwds)
5959

60-
message.details = lambda: None
61-
Bunch(
60+
message.details = Bunch(
6261
peer=peer,
6362
mailfrom=mailfrom,
6463
rcpttos=rcpttos,

0 commit comments

Comments
 (0)