diff --git a/gunicorn/management/commands/run_gunicorn.py b/gunicorn/management/commands/run_gunicorn.py index 6ab3ce9c..d16f288d 100644 --- a/gunicorn/management/commands/run_gunicorn.py +++ b/gunicorn/management/commands/run_gunicorn.py @@ -71,8 +71,4 @@ class Command(BaseCommand): admin_media_path = options.pop('admin_media_path', '') quit_command = (sys.platform == 'win32') and 'CTRL-BREAK' or 'CONTROL-C' - - print "Server is running" - print "Quit the server with %s." % quit_command - DjangoApplicationCommand(options, admin_media_path).run()