From aa633ec88a1583c488223ed6d303407e91af6521 Mon Sep 17 00:00:00 2001 From: Zou Yong Date: Thu, 2 Mar 2017 18:54:55 +0800 Subject: [PATCH] fix pep8 format --- shadowsocks/crypto/sodium.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shadowsocks/crypto/sodium.py b/shadowsocks/crypto/sodium.py index 2fa1407..48a459f 100644 --- a/shadowsocks/crypto/sodium.py +++ b/shadowsocks/crypto/sodium.py @@ -276,7 +276,7 @@ def test_chacha20_ietf(): def test_chacha20_poly1305(): - print ("Test chacha20-poly1305") + print("Test chacha20-poly1305") cipher = SodiumAeadCrypto('chacha20-poly1305', b'k' * 32, b'i' * 32, 1) decipher = SodiumAeadCrypto('chacha20-poly1305', @@ -287,7 +287,7 @@ def test_chacha20_poly1305(): def test_chacha20_ietf_poly1305(): - print ("Test chacha20-ietf-poly1305") + print("Test chacha20-ietf-poly1305") cipher = SodiumAeadCrypto('chacha20-ietf-poly1305', b'k' * 32, b'i' * 32, 1) decipher = SodiumAeadCrypto('chacha20-ietf-poly1305',