From d0d3d90b9912543729a89834536ce2551a98bcba Mon Sep 17 00:00:00 2001 From: Phanabani Date: Fri, 26 Aug 2022 22:14:12 -0400 Subject: [PATCH] Fix `age_suffixed` not being a string. --- sandpiper/birthdays/message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sandpiper/birthdays/message.py b/sandpiper/birthdays/message.py index 8c2156e..be4857f 100644 --- a/sandpiper/birthdays/message.py +++ b/sandpiper/birthdays/message.py @@ -47,7 +47,7 @@ def format_birthday_message( 'themself': p.reflexive, 'are': p.to_be_conjugation, 'theyre': p.subjective_to_be_contraction, - 'age_suffixed': age_with_suffix(age) if age is not None else None, + 'age_suffixed': age_with_suffix(age) if age is not None else '', } args_generated_cases = {} for k, v in generate_cases.items():