aboutsummaryrefslogtreecommitdiff
path: root/source/testbinarytree.py
diff options
context:
space:
mode:
Diffstat (limited to 'source/testbinarytree.py')
-rw-r--r--source/testbinarytree.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/testbinarytree.py b/source/testbinarytree.py
index d60df372..526ddd7f 100644
--- a/source/testbinarytree.py
+++ b/source/testbinarytree.py
@@ -40,3 +40,4 @@ print("Newest article:")
newest_article = BTree.maxValue(root)
print((newest_article["article_date"].strftime('%Y-%m-%d %H:%M') + \
" - " + newest_article["article_title"]))
+print(BTree)
bgstack15