From d03fdf77f45d6ae30d013ca3a775aa831ca5076b Mon Sep 17 00:00:00 2001 From: arvidn Date: Sun, 7 Aug 2016 19:11:27 -0400 Subject: [PATCH] make python test compatible with python 3 --- bindings/python/test.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/bindings/python/test.py b/bindings/python/test.py index 87a080018..d1905c4b3 100644 --- a/bindings/python/test.py +++ b/bindings/python/test.py @@ -18,8 +18,6 @@ class test_create_torrent(unittest.TestCase): content = lt.bencode(entry).strip() with open('unordered.torrent', 'r') as f: file_content = f.read().strip() - print file_content - print content self.assertEqual(content, file_content) class test_torrent_handle(unittest.TestCase):