diff options
author | Alban Gruin | 2017-02-27 11:14:26 +0100 |
---|---|---|
committer | Alban Gruin | 2017-02-27 11:14:26 +0100 |
commit | a9f2d9a4c736511235140f362ab33eb7da0cda61 (patch) | |
tree | eb03a09435b5cf251bc9ba8b028bf7c881c861a1 /management/commands/sendmails.py | |
parent | ba7d2e5c5a78170fa178cd6f9a07a35ec385b63a (diff) |
Nettoyage des imports
Diffstat (limited to 'management/commands/sendmails.py')
-rw-r--r-- | management/commands/sendmails.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/management/commands/sendmails.py b/management/commands/sendmails.py index b53d6f9..c7725b7 100644 --- a/management/commands/sendmails.py +++ b/management/commands/sendmails.py @@ -14,17 +14,15 @@ # with celcatsanitizer; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -from django.core.management.base import BaseCommand, CommandError +from django.core.management.base import BaseCommand from django.core.mail import send_mass_mail -from django.utils import timezone, translation +from django.utils import translation from django.template import Context, loader from django.conf import settings -from edt.models import Group, Subscription, Course +from edt.models import Course, Subscription from edt.utils import get_current_or_next_week, get_week, group_courses -import datetime - class Command(BaseCommand): help = "Sends emails to subscribed users" |