allows Usage=None

This commit is contained in:
Benoit Chesneau 2010-05-22 06:14:13 +02:00
parent 2f676fd19d
commit 17a989672d

View File

@ -18,7 +18,7 @@ class Application(object):
An application interface for configuring and loading An application interface for configuring and loading
the various necessities for any given web framework. the various necessities for any given web framework.
""" """
def __init__(self, usage): def __init__(self, usage=None):
self.log = logging.getLogger(__name__) self.log = logging.getLogger(__name__)
self.cfg = Config(usage) self.cfg = Config(usage)