Skip to content
Snippets Groups Projects
Commit 72e1fda1 authored by Julien (jvoisin) Voisin's avatar Julien (jvoisin) Voisin
Browse files

Remove a leftover print

parent 3cd4f911
No related branches found
No related tags found
No related merge requests found
......@@ -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:]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment