Commit 2b52be2f authored by Jason R. Coombs's avatar Jason R. Coombs Committed by GitHub

Merge pull request #2413 from graingert/ignore-any-exception-loading2to3

ignore any exception when loading 2to3
parents df9157c5 cf9ad4f7
Suppress EOF errors (and other exceptions) when importing lib2to3.
......@@ -11,7 +11,7 @@ import stat
try:
from setuptools.lib2to3_ex import Mixin2to3
except ImportError:
except Exception:
class Mixin2to3:
def run_2to3(self, files, doctests=True):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment