minor cleanup

add-key-for-user
nate 2017-12-14 00:37:45 -08:00
parent c79dbe0941
commit efd8535ae1
1 changed files with 3 additions and 2 deletions

View File

@ -58,14 +58,15 @@ class Townie(User):
}
text = welcome_tmpl.render(context)
from_address = '{}@tilde.town'.format(admin_name)
success = send_email(self.email, text, subject='tilde.town!', frum=from_address)
success = send_email(self.email, text, subject='tilde.town!',
frum=from_address)
if not success:
Ticket.objects.create(name='system',
email='root@tilde.town',
issue_type='other',
issue_text='was not able to send welcome email to {} ({})'.format(
self.username,
self.email))
self.email))
# managing concrete system state
def has_modified_page(self):