From 4ca02d4072b2c78fd1b8efb438cf0e39cbfe4f3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinhard=20M=C3=BCller?= Date: Wed, 10 Feb 2021 17:52:10 +0100 Subject: [PATCH] Fix typo --- validate_email/mx_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate_email/mx_check.py b/validate_email/mx_check.py index af5bd29..f66313c 100644 --- a/validate_email/mx_check.py +++ b/validate_email/mx_check.py @@ -125,7 +125,7 @@ def _check_one_mx( `StopIteration` if this MX accepts the email. """ try: - smtp_converse( + _smtp_converse( mx_record=mx_record, smtp_timeout=smtp_timeout, debug=debug, helo_host=helo_host, from_address=from_address, email_address=email_address)