From 13d193736d0097245237ec235de4248a765b61ba Mon Sep 17 00:00:00 2001 From: Randall Leeds Date: Sat, 23 Jul 2016 15:31:16 -0700 Subject: [PATCH] fix typos in comments --- gunicorn/arbiter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gunicorn/arbiter.py b/gunicorn/arbiter.py index 1ecd33777..ff5d6988c 100644 --- a/gunicorn/arbiter.py +++ b/gunicorn/arbiter.py @@ -408,13 +408,13 @@ def reexec(self): os.chdir(self.START_CTX['cwd']) - # exec the process using the original environnement + # exec the process using the original environment os.execvpe(self.START_CTX[0], self.START_CTX['args'], environ) def reload(self): old_address = self.cfg.address - # reset old environement + # reset old environment for k in self.cfg.env: if k in self.cfg.env_orig: # reset the key to the value it had before