Commit 1c2a8a97 by Chris Dodge

remove unnecessary debug log message

parent 197f5253
......@@ -87,7 +87,6 @@ class ContentStoreToyCourseTest(ModuleStoreTestCase):
def _get_draft_counts(self, item):
cnt = 1 if getattr(item, 'is_draft', False) else 0
print "Checking {0}. Result = {1}".format(item.location, cnt)
for child in item.get_children():
cnt = cnt + self._get_draft_counts(child)
......
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