pep8: Fix E203 violations
This commit is contained in:
parent
73bd3572cf
commit
418f396b32
|
@ -386,10 +386,10 @@ def process_notice(notice, log):
|
||||||
if options.forward_class_messages and notice.opcode.lower() == "crypt":
|
if options.forward_class_messages and notice.opcode.lower() == "crypt":
|
||||||
body = decrypt_zephyr(zephyr_class, notice.instance.lower(), body)
|
body = decrypt_zephyr(zephyr_class, notice.instance.lower(), body)
|
||||||
|
|
||||||
zeph = { 'time' : str(notice.time),
|
zeph = { 'time': str(notice.time),
|
||||||
'sender' : notice.sender,
|
'sender': notice.sender,
|
||||||
'zsig' : zsig, # logged here but not used by app
|
'zsig': zsig, # logged here but not used by app
|
||||||
'content' : body }
|
'content': body }
|
||||||
if is_huddle:
|
if is_huddle:
|
||||||
zeph['type'] = 'private'
|
zeph['type'] = 'private'
|
||||||
zeph['recipient'] = huddle_recipients
|
zeph['recipient'] = huddle_recipients
|
||||||
|
|
Loading…
Reference in a new issue