Skip to content

Commit cf1a1c0

Browse files
authored
Merge pull request #532 from nicoddemus/fix-flakes
Fix flaky error on Windows
2 parents 35e689a + 354cfaa commit cf1a1c0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tox/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from pkg_resources import get_distribution
1+
from pkg_resources import get_distribution, DistributionNotFound
22

33
from .hookspecs import hookspec, hookimpl # noqa
44

@@ -9,7 +9,6 @@
99
__version__ = '0.0.0.dev0'
1010

1111

12-
1312
class exception:
1413
class Error(Exception):
1514
def __str__(self):

0 commit comments

Comments
 (0)