Skip to content

Commit 0091126

Browse files
authored
fix oversight in fixing #595: inherit new exception from Error (#635)
1 parent 938f0ef commit 0091126

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Error(Exception):
1616
def __str__(self):
1717
return "%s: %s" % (self.__class__.__name__, self.args[0])
1818

19-
class MissingSubstitution(Exception):
19+
class MissingSubstitution(Error):
2020
FLAG = 'TOX_MISSING_SUBSTITUTION'
2121
"""placeholder for debugging configurations"""
2222
def __init__(self, name):

0 commit comments

Comments
 (0)