make the base handle optional config file

This commit is contained in:
Alfredo Deza
2013-01-23 18:03:43 -05:00
parent 82653e36c5
commit d12dd41845

View File

@@ -136,7 +136,9 @@ class BaseCommand(object):
arguments = ({ arguments = ({
'name': 'config_file', 'name': 'config_file',
'help': 'a Pecan configuration file' 'help': 'a Pecan configuration file',
'nargs': '?',
'default': None,
},) },)
def run(self, args): def run(self, args):