From 57f4826ad8408169bffe2f19f7a41497d269ac90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=93=B2=E9=AA=81?= Date: Sun, 19 Nov 2017 20:39:04 +0800 Subject: [PATCH] don't print debug info --- aria2_to_magnet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aria2_to_magnet.py b/aria2_to_magnet.py index 21d5630..db6c343 100644 --- a/aria2_to_magnet.py +++ b/aria2_to_magnet.py @@ -62,7 +62,7 @@ def parse_aria_control_file(file_name): info_hash = "" for ch in hash_binary: hex_word = hex(ord(ch))[2:].zfill(2) - print hex_word + # print hex_word info_hash += hex_word.upper()