Minor bugfix in exception constructor.

This commit is contained in:
Todd Gamblin 2014-10-07 23:23:18 -07:00
parent 1801a85966
commit e8d131ef96

View File

@ -1619,7 +1619,7 @@ def __init__(self, provided, required, constraint_type):
class UnsatisfiableSpecNameError(UnsatisfiableSpecError):
"""Raised when two specs aren't even for the same package."""
def __init__(self, provided, required):
super(UnsatisfiableVersionSpecError, self).__init__(
super(UnsatisfiableSpecNameError, self).__init__(
provided, required, "name")