From a79631be8e819eecb306c33ad090def66deca99b Mon Sep 17 00:00:00 2001 From: Aaron Kimbre Date: Fri, 1 Apr 2022 10:40:07 -0500 Subject: [PATCH] go back to useing slightly scruffed formatting --- app/properties.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/properties.py b/app/properties.py index 25c491d..3773609 100644 --- a/app/properties.py +++ b/app/properties.py @@ -120,9 +120,9 @@ def reject(id): # send rejection reason to their mailbox # cause the game doesn't present it otherwise - mail_message = "Rejected Property " + \ - f"{property_data.name if property_data.name else zone_name} " + \ - f"with reason \"{form.rejection_reason.data}\"" + mail_message = f"""Rejected Property + {property_data.name} on {zone_name} + with reason \"{form.rejection_reason.data}\"""" Mail( sender_id=0, sender_name=f"[GM] {current_user.username}",