Commit d7cab471 by Bridger Maxwell

Accidentally had left a print statement commented out.

parent ba42c022
......@@ -546,11 +546,11 @@ class XModuleDescriptor(Plugin, HTMLSnippet):
all(getattr(self, attr, None) == getattr(other, attr, None)
for attr in self.equality_attributes))
# if not eq:
# for attr in self.equality_attributes:
# print(getattr(self, attr, None),
# getattr(other, attr, None),
# getattr(self, attr, None) == getattr(other, attr, None))
if not eq:
for attr in self.equality_attributes:
print(getattr(self, attr, None),
getattr(other, attr, None),
getattr(self, attr, None) == getattr(other, attr, None))
return eq
......
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