Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(676)

Unified Diff: recipe_engine/config_types.py

Issue 2829273002: Fix Path.__ne__ (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698