From 17a989672d0449c389bafecedb7182397fa2b167 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Sat, 22 May 2010 06:14:13 +0200 Subject: [PATCH] allows Usage=None --- gunicorn/app/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/app/base.py b/gunicorn/app/base.py index 201b4d0f..45dd9655 100644 --- a/gunicorn/app/base.py +++ b/gunicorn/app/base.py @@ -18,7 +18,7 @@ class Application(object): An application interface for configuring and loading the various necessities for any given web framework. """ - def __init__(self, usage): + def __init__(self, usage=None): self.log = logging.getLogger(__name__) self.cfg = Config(usage)