From 4aa1c26232414a1056e9e0903f75f049116da36a Mon Sep 17 00:00:00 2001 From: lifnej <235678045+lifnej@users.noreply.github.com> Date: Fri, 3 Oct 2025 20:27:03 +0200 Subject: [PATCH] Missing newline in vcard info log. --- Whatsapp_Chat_Exporter/android_handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Whatsapp_Chat_Exporter/android_handler.py b/Whatsapp_Chat_Exporter/android_handler.py index 4861ff6..f6c12ea 100644 --- a/Whatsapp_Chat_Exporter/android_handler.py +++ b/Whatsapp_Chat_Exporter/android_handler.py @@ -39,10 +39,10 @@ def contacts(db, data, enrich_from_vcards): if total_row_number == 0: if enrich_from_vcards is not None: logger.info( - "No contacts profiles found in the default database, contacts will be imported from the specified vCard file.") + "No contacts profiles found in the default database, contacts will be imported from the specified vCard file.\n") else: logger.warning( - "No contacts profiles found in the default database, consider using --enrich-from-vcards for adopting names from exported contacts from Google") + "No contacts profiles found in the default database, consider using --enrich-from-vcards for adopting names from exported contacts from Google\n") return False else: logger.info(f"Processed {total_row_number} contacts\n")