From 2d2260dd194bf0fa19bd28336f237d94762da2bb Mon Sep 17 00:00:00 2001 From: benoitc Date: Tue, 21 Feb 2012 12:20:40 +0100 Subject: [PATCH] and remove useless print --- gunicorn/management/commands/run_gunicorn.py | 4 ---- 1 file changed, 4 deletions(-) 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()