From cae30d879501eef336ad3e1a72b7eb52754c584d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 29 May 2019 17:58:23 +0530 Subject: [PATCH] Dont scan smtplib.py in the porting utils --- setup/port.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/port.py b/setup/port.py index d49c1dd407..ecd09e2e9e 100644 --- a/setup/port.py +++ b/setup/port.py @@ -57,7 +57,7 @@ def run_2to3(path, show_diffs=False): class Base(Command): scan_all_files = False - EXCLUDED_BASENAMES = {'Zeroconf.py'} + EXCLUDED_BASENAMES = {'Zeroconf.py', 'smtplib.py'} @property def cache_file(self):