missing logger
This commit is contained in:
parent
d1c3535c7e
commit
8b0df39d13
|
@ -1,4 +1,6 @@
|
|||
# coding: utf-8
|
||||
import logging
|
||||
|
||||
from django.core.management.base import BaseCommand
|
||||
from django.utils import timezone
|
||||
|
||||
|
@ -7,6 +9,8 @@ from sponsors.models import Sponsor
|
|||
from sponsors.email import add_sponsorticket_email
|
||||
from tickets.models import SponsorTicket, TicketType
|
||||
|
||||
logger = logging.getLogger("bornhack.%s" % __name__)
|
||||
|
||||
|
||||
class Command(BaseCommand):
|
||||
help = "Emails sponsor tickets"
|
||||
|
|
Loading…
Reference in a new issue