docker/appstream-gen.py aktualisiert

This commit is contained in:
2026-08-26 11:46:29 +02:00
parent 7200afb4a0
commit d8de0640d5
+5 -3
View File
@@ -30,16 +30,18 @@ DEFAULT_NOTE = "Über Unternehmens-Repo bereitgestellt."
def die(msg): def die(msg):
print(f"[appstream-gen] FEHLER: {msg}", file=sys.stderr) sys.stdout.flush()
print(f"[appstream-gen] FEHLER: {msg}", file=sys.stderr, flush=True)
sys.exit(1) sys.exit(1)
def warn(msg): def warn(msg):
print(f"[appstream-gen] WARNUNG: {msg}", file=sys.stderr) sys.stdout.flush()
print(f"[appstream-gen] WARNUNG: {msg}", file=sys.stderr, flush=True)
def info(msg): def info(msg):
print(f"[appstream-gen] {msg}") print(f"[appstream-gen] {msg}", flush=True)
def sanitize_id_part(value): def sanitize_id_part(value):