diff options
author | Ruoqi Yang <[email protected]> | 2022-10-14 18:54:38 +0800 |
---|---|---|
committer | Ruoqi Yang <[email protected]> | 2022-10-14 18:57:01 +0800 |
commit | 949bf953861dc322cdf392cae392a2325f5f9c0e (patch) | |
tree | f8d952c2b0567a880a5d8b04fec5424cb21d7ad8 | |
parent | 824e382bbabcf82523dbab75b3c6d1c42da596ed (diff) | |
download | ATRI-949bf953861dc322cdf392cae392a2325f5f9c0e.tar.gz ATRI-949bf953861dc322cdf392cae392a2325f5f9c0e.tar.bz2 ATRI-949bf953861dc322cdf392cae392a2325f5f9c0e.zip |
plugin console: fix bug
-rw-r--r-- | ATRI/plugins/console/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ATRI/plugins/console/__init__.py b/ATRI/plugins/console/__init__.py index 1a05789..5836b31 100644 --- a/ATRI/plugins/console/__init__.py +++ b/ATRI/plugins/console/__init__.py @@ -78,7 +78,7 @@ async def _(event: PrivateMessageEvent, is_pub_n: str = ArgPlainText("is_pub_n") ) scheduler.add_job( - __del_auth_key(), + __del_auth_key, name="清除后台验证凭证", next_run_time=dead_time, misfire_grace_time=15, |