Skip to content

Commit

Permalink
PEP8 indent
Browse files Browse the repository at this point in the history
A tiny change to perfect the indent.
  • Loading branch information
cicku committed Jul 27, 2015
1 parent 1bb0e51 commit 2555aa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shadowsocks/common.py
Expand Up @@ -157,7 +157,7 @@ def parse_header(data):
if len(data) >= 2 + addrlen:
dest_addr = data[2:2 + addrlen]
dest_port = struct.unpack('>H', data[2 + addrlen:4 +
addrlen])[0]
addrlen])[0]
header_length = 4 + addrlen
else:
logging.warn('header is too short')
Expand Down

0 comments on commit 2555aa8

Please sign in to comment.