Commit 48498b10 authored by peastman's avatar peastman
Browse files

Fixed bug in pull request #227

parent d4387357
......@@ -91,12 +91,12 @@ class BaseDimension(object):
return 'BaseDimension("%s")' % self.name
def __eq__(self, other):
if isInstance(other, BaseDimension):
if isinstance(other, BaseDimension):
return self._index == other._index
return False
def __ne__(self, other):
if isInstance(other, BaseDimension):
if isinstance(other, BaseDimension):
return self._index != other._index
return False
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment