Fixed a couple harmless typos.

Thanks to Josh Ourisman for spotting them.
This commit is contained in:
Paul J. Davis 2011-02-15 14:51:03 -05:00
parent 6bf6fbe72f
commit 0c05de4d2b
3 changed files with 3 additions and 2 deletions

1
THANKS
View File

@ -20,3 +20,4 @@ Adrien Lemaire <lemaire.adrien@gmail.com>
Oliver Tonnhofer <olt@bogosoft.com> Oliver Tonnhofer <olt@bogosoft.com>
Anand Chitipothu <anandology@gmail.com> Anand Chitipothu <anandology@gmail.com>
Jannis Leidel <jannis@leidel.info> Jannis Leidel <jannis@leidel.info>
Josh Ourisman <josh@joshourisman.com>

View File

@ -72,7 +72,7 @@ class DjangoApplication(Application):
from django.conf import ENVIRONMENT_VARIABLE from django.conf import ENVIRONMENT_VARIABLE
from django.core.handlers.wsgi import WSGIHandler from django.core.handlers.wsgi import WSGIHandler
os.environ[ENVIRONMENT_VARIABLE] = self.settings_modname os.environ[ENVIRONMENT_VARIABLE] = self.settings_modname
# setup envoron # setup environ
self.setup_environ() self.setup_environ()
return WSGIHandler() return WSGIHandler()

View File

@ -116,7 +116,7 @@ class Worker(object):
sys.exit(0) sys.exit(0)
def handle_error(self, client, exc): def handle_error(self, client, exc):
self.log.exception("Error hanlding request") self.log.exception("Error handling request")
status_int = 500 status_int = 500
reason = "Internal Server Error" reason = "Internal Server Error"