aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/testbinarytree.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/testbinarytree.py b/source/testbinarytree.py
index 67b19368..84670ca1 100644
--- a/source/testbinarytree.py
+++ b/source/testbinarytree.py
@@ -1,3 +1,4 @@
+#! /usr/bin/env python
# -*- coding: utf-8 -*-
import time
@@ -41,4 +42,4 @@ print("Newest article:")
newest_article = tree.maxValue(tree.root)
print((newest_article["article_date"].strftime('%Y-%m-%d %H:%M') + \
" - " + newest_article["article_title"]))
-print(tree) \ No newline at end of file
+#print(tree) \ No newline at end of file
bgstack15