diff --git a/voice-server/output.wav b/voice-server/output.wav index 8832d8a..dfba4bb 100644 Binary files a/voice-server/output.wav and b/voice-server/output.wav differ diff --git a/youwilldie/app.py b/youwilldie/app.py index 3e96b88..b3f94dd 100644 --- a/youwilldie/app.py +++ b/youwilldie/app.py @@ -53,9 +53,10 @@ def process(text): tts.say("Heran") elif "good morning" in formatted: dt = datetime.now() - dayOfWeek = dt.weekday() + dayOfWeek = dt.strftime('%A') full_month_name = dt.strftime("%B") - tts.say(f"Good morning! Today is {full_month_name} {dt.day}, {dt.year}. The day of the week is {dayOfWeek}") + tts.say( + f"Good morning! Today is {dayOfWeek}, {full_month_name}, {dt.day}, {dt.year}.") else: tts.say("Sorry, I don't understand that command")