aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-03-27 21:45:20 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-03-27 21:45:20 +0100
commitefe9d9eea3235bd7b29ad7c8bb6fae01fe00d5bf (patch)
tree41f5d543f10d90d8153ed7c4f19eb489a088057c /source
parentChech if there is any subscription. (diff)
downloadnewspipe-efe9d9eea3235bd7b29ad7c8bb6fae01fe00d5bf.tar.gz
newspipe-efe9d9eea3235bd7b29ad7c8bb6fae01fe00d5bf.tar.bz2
newspipe-efe9d9eea3235bd7b29ad7c8bb6fae01fe00d5bf.zip
don't print the tree.
Diffstat (limited to 'source')
-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