Browse Source

stupid error

master
Benni Baermann 3 years ago
parent
commit
5bfadc6365
2 changed files with 5 additions and 1 deletions
  1. +4
    -0
      TODO
  2. +1
    -1
      input/management/commands/sendmails.py

+ 4
- 0
TODO View File

@ -12,3 +12,7 @@ other known problems:
- The DatePicker works only if you are logged in, which is mostly ok for /intern - The DatePicker works only if you are logged in, which is mostly ok for /intern
and there is no Date to insert at the moment in forms for externs. and there is no Date to insert at the moment in forms for externs.
other issues
- server error 500 in production after businesscards process. is this reproducable?

+ 1
- 1
input/management/commands/sendmails.py View File

@ -40,7 +40,7 @@ class Command(BaseCommand):
mail_template.render(context), mail_template.render(context),
IF_EMAIL, IF_EMAIL,
[email], [email],
bcc=[SURVEY_EMAIL, benni.baermann@wikimedia.de])
bcc=[SURVEY_EMAIL, 'benni.baermann@wikimedia.de'])
survey_mail.send(fail_silently=False) survey_mail.send(fail_silently=False)
except BadHeaderError: except BadHeaderError:
return HttpResponse('Invalid header found.') return HttpResponse('Invalid header found.')

Loading…
Cancel
Save