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:
parent
cd11c51cac
commit
2cc0cfb2bb
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue