1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-24 20:06:38 +02:00

doc/api: fix type of parameter "date" in script prototype of function prnt_date_tags

This commit is contained in:
Sébastien Helleu
2022-01-30 10:54:30 +01:00
parent 28d6b71d9e
commit bf3241208b
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -434,7 +434,7 @@ def prnt(buffer: str, message: str) -> int:
...
def prnt_date_tags(buffer: str, date: str, tags: str, message: str) -> int:
def prnt_date_tags(buffer: str, date: int, tags: str, message: str) -> int:
"""`prnt_date_tags in WeeChat plugin API reference <https://weechat.org/doc/api#_prnt_date_tags>`_"""
...