1
0
Fork 0

Shorten hash

This commit is contained in:
Luca Beltrame 2022-01-15 17:13:06 +01:00
parent 4dbc8a1c50
commit 0201261b41
Signed by: einar
GPG key ID: 4707F46E9EC72DEC

View file

@ -169,7 +169,7 @@ def notify_matrix(update_data: Dict[str, List[Tuple[str, str]]]) -> None:
for package, remote, state in update: for package, remote, state in update:
if state != "error": if state != "error":
row = (f"* {package} - [{state}]" row = (f"* {package} - [{state[0:8]}]"
f"(https://commits.kde.org/{remote}/{state})") f"(https://commits.kde.org/{remote}/{state})")
structure.append(row) structure.append(row)
else: else: