On Monday 28 November 2016 15:48:21 [email protected] wrote: > This was filed as https://code.djangoproject.com/ticket/27537 , but moving > here for discussion. > It seems all you need in the overridden runserver is:
from (...)runserver import Command as BaseCommand
class Command(BaseCommand):
def handle(self, *args, **options):
options.setdefault('addrport', '0.0.0.0:8000')
super(Command, self).handle(*args, **options)
What am I missing?
