Stop dumping OFX data all over stdout when parsing

This was a great debugging measure, but stuff seems to be working now
and I don't need the clutter
This commit is contained in:
Eli Ribble 2016-06-28 16:06:58 -06:00
parent cd11c51cac
commit 2cc0cfb2bb
1 changed files with 0 additions and 1 deletions

View File

@ -58,7 +58,6 @@ def parse(content):
root = current_node or parent_node
while root.parent:
root = root.parent
print(pformat(root))
return root
def pformat(node, indent=0):