| Index: recipe_engine/config_types.py
|
| diff --git a/recipe_engine/config_types.py b/recipe_engine/config_types.py
|
| index 87feebe6c31071d18e616d0b141b87f7ddc65b51..0ea3944f50ee96794f901091f0825ec06c8610ca 100644
|
| --- a/recipe_engine/config_types.py
|
| +++ b/recipe_engine/config_types.py
|
| @@ -175,7 +175,7 @@ class Path(RecipeConfigType):
|
| self.platform_ext == other.platform_ext)
|
|
|
| def __ne__(self, other):
|
| - return not self.base == other
|
| + return not self == other
|
|
|
| def join(self, *pieces, **kwargs):
|
| if not pieces and not kwargs:
|
|
|