From d5a6be95b512589fa0392d243d404c7d87abc841 Mon Sep 17 00:00:00 2001 From: Will Boyd Date: Fri, 12 May 2017 15:36:48 -0400 Subject: [PATCH] Fixed issue in Universe.__eq__ per comment by @paulromano --- openmc/universe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmc/universe.py b/openmc/universe.py index 006a77a54..d36b167a5 100644 --- a/openmc/universe.py +++ b/openmc/universe.py @@ -76,7 +76,7 @@ class Universe(object): return False elif self.name != other.name: return False - elif dict.__eq__(self.cells, other.cells): + elif dict.__ne__(self.cells, other.cells): return False else: return True