teams-alerter 0.2.10__tar.gz → 0.2.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {teams_alerter-0.2.10 → teams_alerter-0.2.11}/PKG-INFO +1 -1
- {teams_alerter-0.2.10 → teams_alerter-0.2.11}/pyproject.toml +1 -1
- {teams_alerter-0.2.10 → teams_alerter-0.2.11}/teams_alerter/utils.py +4 -2
- {teams_alerter-0.2.10 → teams_alerter-0.2.11}/teams_alerter.egg-info/PKG-INFO +1 -1
- {teams_alerter-0.2.10 → teams_alerter-0.2.11}/README.md +0 -0
- {teams_alerter-0.2.10 → teams_alerter-0.2.11}/setup.cfg +0 -0
- {teams_alerter-0.2.10 → teams_alerter-0.2.11}/teams_alerter/__init__.py +0 -0
- {teams_alerter-0.2.10 → teams_alerter-0.2.11}/teams_alerter/core.py +0 -0
- {teams_alerter-0.2.10 → teams_alerter-0.2.11}/teams_alerter.egg-info/SOURCES.txt +0 -0
- {teams_alerter-0.2.10 → teams_alerter-0.2.11}/teams_alerter.egg-info/dependency_links.txt +0 -0
- {teams_alerter-0.2.10 → teams_alerter-0.2.11}/teams_alerter.egg-info/requires.txt +0 -0
- {teams_alerter-0.2.10 → teams_alerter-0.2.11}/teams_alerter.egg-info/top_level.txt +0 -0
- {teams_alerter-0.2.10 → teams_alerter-0.2.11}/tests/__init__.py +0 -0
- {teams_alerter-0.2.10 → teams_alerter-0.2.11}/tests/test_core.py +0 -0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "teams-alerter"
|
7
|
-
version = "0.2.
|
7
|
+
version = "0.2.11"
|
8
8
|
description = "Module pour envoyer des alertes Teams via Pub/Sub"
|
9
9
|
authors = [{ name = "Toki", email = "t.bakotondrabe-ext@paris-turf.com" }]
|
10
10
|
readme = "README.md"
|
@@ -190,7 +190,7 @@ def build_snippet_html_part(table_data: list, app_name: str):
|
|
190
190
|
<div style="background:#0b1021;color:#e6e6e6;padding:12px;border-radius:4px;font-family:monospace;font-size:13px;line-height:1.5;white-space:pre;">
|
191
191
|
"""
|
192
192
|
for row in table_data[1:]:
|
193
|
-
content += f"SELECT * FROM ps_force_relaunch_stat_cheval_apres_course('{row[0]}')
|
193
|
+
content += f"<span> SELECT * FROM ps_force_relaunch_stat_cheval_apres_course('{row[0]}'); </span> <br/>"
|
194
194
|
content += "</div>"
|
195
195
|
|
196
196
|
elif app_name == "health_check_check_partants_data":
|
@@ -199,7 +199,9 @@ def build_snippet_html_part(table_data: list, app_name: str):
|
|
199
199
|
<div style="background:#0b1021;color:#e6e6e6;padding:12px;border-radius:4px;font-family:monospace;font-size:13px;line-height:1.5;white-space:pre;">
|
200
200
|
"""
|
201
201
|
for row in table_data:
|
202
|
-
content +=
|
202
|
+
content += (
|
203
|
+
f"<span> SELECT * FROM ps_force_relaunch_transaction('tb_course','{row[0]}', false); </span> <br/>"
|
204
|
+
)
|
203
205
|
content += "</div>"
|
204
206
|
|
205
207
|
return content
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|