From bea6e3b97f96abec219f64b3e1e30139c1f29bfb Mon Sep 17 00:00:00 2001 From: benoitc Date: Tue, 21 Feb 2012 12:19:42 +0100 Subject: [PATCH] remove unecessary imports. --- gunicorn/management/commands/run_gunicorn.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/gunicorn/management/commands/run_gunicorn.py b/gunicorn/management/commands/run_gunicorn.py index 2846265d..6ab3ce9c 100644 --- a/gunicorn/management/commands/run_gunicorn.py +++ b/gunicorn/management/commands/run_gunicorn.py @@ -6,11 +6,8 @@ from optparse import make_option import sys - -import django from django.core.management.base import BaseCommand, CommandError from django.conf import settings -from django.utils import translation from gunicorn.app.djangoapp import DjangoApplicationCommand from gunicorn.config import make_settings @@ -75,8 +72,6 @@ class Command(BaseCommand): admin_media_path = options.pop('admin_media_path', '') quit_command = (sys.platform == 'win32') and 'CTRL-BREAK' or 'CONTROL-C' - print "\nDjango version %s, using settings %r" % (django.get_version(), - settings.SETTINGS_MODULE) print "Server is running" print "Quit the server with %s." % quit_command