Fix typos

This commit is contained in:
jbergstroem 2010-02-06 11:36:46 +01:00 committed by Paul J. Davis
parent 4745bc6830
commit b9482801f6
2 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ class Arbiter(object):
WORKERS = {}
PIPE = []
# I love dyanmic languages
# I love dynamic languages
SIG_QUEUE = []
SIGNALS = map(
lambda x: getattr(signal, "SIG%s" % x),
@ -160,7 +160,7 @@ class Arbiter(object):
return
except socket.error, e:
if e[0] == errno.ENOTCONN:
self.log.error("should be a non GUNICORN environnement")
self.log.error("should be a non GUNICORN environment")
else:
raise
else:

View File

@ -223,7 +223,7 @@ def run_paster():
def get_app(parser, opts, args):
if len(args) != 1:
parser.error("No applicantion name specified.")
parser.error("No application name specified.")
config_file = os.path.abspath(os.path.normpath(
os.path.join(os.getcwd(), args[0])))