don't print debug info

This commit is contained in:
黄哲骁 2017-11-19 20:39:04 +08:00
parent 87ab94b980
commit 57f4826ad8

View File

@ -62,7 +62,7 @@ def parse_aria_control_file(file_name):
info_hash = "" info_hash = ""
for ch in hash_binary: for ch in hash_binary:
hex_word = hex(ord(ch))[2:].zfill(2) hex_word = hex(ord(ch))[2:].zfill(2)
print hex_word # print hex_word
info_hash += hex_word.upper() info_hash += hex_word.upper()