From 5ac384663ba638cc0ad4cb8747ae491d8f706869 Mon Sep 17 00:00:00 2001 From: Aaron Kimbre Date: Fri, 1 Apr 2022 10:41:48 -0500 Subject: [PATCH] shorten subject --- app/properties.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/properties.py b/app/properties.py index 3773609..654773c 100644 --- a/app/properties.py +++ b/app/properties.py @@ -120,7 +120,7 @@ def reject(id): # send rejection reason to their mailbox # cause the game doesn't present it otherwise - mail_message = f"""Rejected Property + mail_message = f"""Rejected Property {property_data.name} on {zone_name} with reason \"{form.rejection_reason.data}\"""" Mail( @@ -129,7 +129,7 @@ def reject(id): receiver_id=property_data.owner_id, receiver_name=char_name, time_sent=time.time(), - subject=f"Property {property_data.name} on {zone_name} Rejected", + subject="Property Rejected", body=mail_message, attachment_id=0, attachment_lot=0,