From 6e2de5ab6e8aeac9d388e3ab93caf981580200ff Mon Sep 17 00:00:00 2001 From: Ben Phillips Date: Tue, 19 Aug 2014 07:48:31 +0100 Subject: [PATCH] Tidy up comments --- gunicorn/app/django_wsgi.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gunicorn/app/django_wsgi.py b/gunicorn/app/django_wsgi.py index b689ae7f..1b1374e2 100644 --- a/gunicorn/app/django_wsgi.py +++ b/gunicorn/app/django_wsgi.py @@ -50,11 +50,11 @@ def make_wsgi_application(): def reload_django_settings(): mod = util.import_module(os.environ['DJANGO_SETTINGS_MODULE']) - # reload module + # Reload module. reload(mod) - # reload settings. - # USe code from django.settings.Settings module. + # Reload settings. + # Use code from django.settings.Settings module. # Settings that should be converted into tuples if they're mistakenly entered # as strings.