Skip to content

Commit 75dde7a

Browse files
committed
修复致命错误smtp_port参数未设定
1 parent 528e5a1 commit 75dde7a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

parquool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def my_job(x, y):
227227
password = password or os.getenv("NOTIFY_TASK_PASSWORD")
228228
receiver = receiver or os.getenv("NOTIFY_TASK_RECEIVER")
229229
smtp_server = smtp_server or os.getenv("NOTIFY_TASK_SMTP_SERVER")
230-
smtp_port = smtp_server or os.getenv("NOTIFY_TASK_SMTP_PORT")
230+
smtp_port = smtp_port or os.getenv("NOTIFY_TASK_SMTP_PORT")
231231
cc = cc or os.getenv("NOTIFY_TASK_CC")
232232

233233
def wrapper(task):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "parquool"
7-
version = "0.0.1"
7+
version = "0.0.1post1"
88
description = "Parquool - A Python Library for SQL like parquet query"
99
readme = { file = "README.md", content-type = "text/markdown" }
1010
authors = [

0 commit comments

Comments
 (0)