home » zplus/clif.git
Author zPlus <zplus@peers.community> 2023-03-21 21:30:59
Committer zPlus <zplus@peers.community> 2023-03-21 21:30:59
Commit 6a6dc83 (patch)
Tree 7433e77
Parent(s)

Replace variable "uid" with "email_id"


commits diff: 3dfb528..6a6dc83
1 file changed, 2 insertions, 2 deletionsdownload


Diffstat
-rwxr-xr-x emails.py 4

Diff options
View
Side
Whitespace
Context lines
Inter-hunk lines
+2/-2 M   emails.py
index a7db528..a0722f2
old size: 11K - new size: 11K
@@ -91,12 +91,12 @@ try:
91 91 assert os.path.isdir(repository_path)
92 92
93 93 logging.info('Received valid email UID:{} From:{} To:{} Subject:"{}"'.format(
94 - uid, email_from, email_to, email_subject))
94 + email_id, email_from, email_to, email_subject))
95 95
96 96 except Exception as e:
97 97
98 98 logging.info('Received invalid email UID:{} From:{} To:{} Subject:"{}"'.format(
99 - uid, email_from, email_to, email_subject))
99 + email_id, email_from, email_to, email_subject))
100 100
101 101 logging.info(e)
102 102 exit()