modified comment

Signed-off-by: kai <kai@bsraudio.ch>
This commit is contained in:
kai
2026-02-11 13:17:49 +01:00
parent 22ced77dcf
commit 93642f25c1

View File

@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
"""
Mehrmonats Auswertung ACRCloud PDFReport + Druck
Mehrmonats Auswertung ACRCloud PDF Report und Druck
———————————————————————————————————————————————
• Timestamp Spalten : "Timestamp(UTC+0x:00)"
• Dauer Spalte : "Played Duration" (Sekunden)
@@ -126,11 +126,11 @@ def main() -> None:
# chronologisch sortieren
ergebnisse.sort(key=lambda x: (x[0], x[1]))
# PDFDatei speichern
# PDF Datei speichern
save_path = filedialog.asksaveasfilename(
title="PDFReport speichern unter …",
title="PDF Report speichern unter …",
defaultextension=".pdf",
filetypes=[("PDFDatei", "*.pdf")],
filetypes=[("PDF Datei", "*.pdf")],
initialfile="Musikanteil_Report.pdf",
)
if not save_path: