Minor bugfix in exception constructor.
This commit is contained in:
parent
1801a85966
commit
e8d131ef96
@ -1619,7 +1619,7 @@ def __init__(self, provided, required, constraint_type):
|
|||||||
class UnsatisfiableSpecNameError(UnsatisfiableSpecError):
|
class UnsatisfiableSpecNameError(UnsatisfiableSpecError):
|
||||||
"""Raised when two specs aren't even for the same package."""
|
"""Raised when two specs aren't even for the same package."""
|
||||||
def __init__(self, provided, required):
|
def __init__(self, provided, required):
|
||||||
super(UnsatisfiableVersionSpecError, self).__init__(
|
super(UnsatisfiableSpecNameError, self).__init__(
|
||||||
provided, required, "name")
|
provided, required, "name")
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user