Skip to content

Commit

Permalink
fix: smtp logging issue
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Apr 23, 2024
1 parent 57f4bae commit 29273e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/netius/servers/smtp.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def send_smtp_lines(self, code, message = "", lines = (), delay = True, callback
lines_s.append("%d %s" % (code, tail))
data = "\r\n".join(lines_s) + "\r\n"
count = self.send(data, delay = delay, callback = callback)
self.debug(base, extra = dict(meta_c = lambda: self.log_dict()))
self.debug(base)
return count

def ready(self):
Expand Down

0 comments on commit 29273e6

Please sign in to comment.