Skip to content

Commit 35d6d7c

Browse files
committed
Fix indentation
1 parent e10fb2a commit 35d6d7c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

python/http_ece/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ def lengthPrefix(key):
6868
nonceinfo = buildInfo(b"nonce", context)
6969
elif padSize == 1:
7070
if authSecret is not None:
71-
keyinfo = buildInfo(b"aesgcm128", context)
72-
nonceinfo = buildInfo(b"nonce", context)
71+
keyinfo = buildInfo(b"aesgcm128", context)
72+
nonceinfo = buildInfo(b"nonce", context)
7373
else:
74-
keyinfo = b"Content-Encoding: aesgcm128"
75-
nonceinfo = b"Content-Encoding: nonce"
74+
keyinfo = b"Content-Encoding: aesgcm128"
75+
nonceinfo = b"Content-Encoding: nonce"
7676
else:
7777
raise Exception(u"unable to set context for padSize=" + str(padSize))
7878

0 commit comments

Comments
 (0)