From 72e1fda18d2788fb45c04e35a6447a56599c86ed Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sun, 8 Jul 2018 15:19:18 +0200 Subject: [PATCH] Remove a leftover print --- libmat2/torrent.py | 1 - 1 file changed, 1 deletion(-) diff --git a/libmat2/torrent.py b/libmat2/torrent.py index 925ac55..c1ea2ca 100644 --- a/libmat2/torrent.py +++ b/libmat2/torrent.py @@ -70,7 +70,6 @@ class _BencodeHandler(object): def __decode_string(s: bytes) -> Tuple[bytes, bytes]: colon = s.index(b':') str_len = int(s[:colon]) - print('S: %s' % s) if s[0] == '0' and colon != 1: raise ValueError s = s[1:]