join words

This commit is contained in:
Kseninia Mikhaylova 2024-06-03 13:24:16 +03:00
parent 80eafafb51
commit 831cacbf37
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ async def tg_intgr_get(request: Request):
) )
data = requests.get(get_comment_hook) data = requests.get(get_comment_hook)
data_json = data.json() data_json = data.json()
comment = re.sub(r"((\[)(.*?)(]))", "", data_json["result"]["POST_MESSAGE"]).split(' ')[:100] comment = ' '.join(re.sub(r"((\[)(.*?)(]))", "", data_json["result"]["POST_MESSAGE"]).split(' ')[:100])
comment += f'\nот {data_json["result"]["AUTHOR_NAME"]}' comment += f'\nот {data_json["result"]["AUTHOR_NAME"]}'
comment += f'\nhttps://crm.svs-tech.pro/company/personal/user/{bx_id}/tasks/task/view/{task_id}/' comment += f'\nhttps://crm.svs-tech.pro/company/personal/user/{bx_id}/tasks/task/view/{task_id}/'