Auto-commit local changes before build (2026-01-08 16:20:40)
This commit is contained in:
parent
63d4b0126b
commit
bbfcfebfc2
@ -1,12 +1,7 @@
|
|||||||
|
|
||||||
# --- Synology DSM Updates (informational, excluded from reporting) ---
|
# --- Synology DSM Updates (informational, excluded from reporting) ---
|
||||||
DSM_UPDATE_CANCELLED_PATTERNS = [
|
|
||||||
"Automatische update van DSM is geannuleerd",
|
|
||||||
"Automatic DSM update was cancelled",
|
|
||||||
]
|
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
|
|
||||||
import re
|
import re
|
||||||
from typing import Dict, Tuple, List, Optional
|
from typing import Dict, Tuple, List, Optional
|
||||||
|
|
||||||
@ -19,6 +14,11 @@ from ..models import MailMessage
|
|||||||
# - Hyper Backup (Synology): task notifications from Hyper Backup
|
# - Hyper Backup (Synology): task notifications from Hyper Backup
|
||||||
# - Account Protection (Synology): DSM Account Protection lockout notifications
|
# - Account Protection (Synology): DSM Account Protection lockout notifications
|
||||||
|
|
||||||
|
DSM_UPDATE_CANCELLED_PATTERNS = [
|
||||||
|
"Automatische update van DSM is geannuleerd",
|
||||||
|
"Automatic DSM update was cancelled",
|
||||||
|
]
|
||||||
|
|
||||||
_BR_RE = re.compile(r"<\s*br\s*/?\s*>", re.I)
|
_BR_RE = re.compile(r"<\s*br\s*/?\s*>", re.I)
|
||||||
_TAG_RE = re.compile(r"<[^>]+>")
|
_TAG_RE = re.compile(r"<[^>]+>")
|
||||||
_WS_RE = re.compile(r"[\t\r\f\v ]+")
|
_WS_RE = re.compile(r"[\t\r\f\v ]+")
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user