mirror of https://gitlab.com/bashrc2/epicyon
Tidying
parent
88d6ff7b7d
commit
82007a99ac
8
posts.py
8
posts.py
|
@ -684,10 +684,10 @@ def createPostBase(baseDir: str, nickname: str, domain: str, port: int,
|
|||
removeFromCC = []
|
||||
for ccRecipient in toCC:
|
||||
for sendToActor in toRecipients:
|
||||
if ccRecipient in sendToActor:
|
||||
if ccRecipient not in removeFromCC:
|
||||
removeFromCC.append(ccRecipient)
|
||||
break
|
||||
if ccRecipient in sendToActor and \
|
||||
ccRecipient not in removeFromCC:
|
||||
removeFromCC.append(ccRecipient)
|
||||
break
|
||||
for ccRemoval in removeFromCC:
|
||||
toCC.remove(ccRemoval)
|
||||
|
||||
|
|
Loading…
Reference in New Issue