Merge pull request #2 from Shrews/fix_prep

Fix DoxYaml when 'prep' not present.
This commit is contained in:
Monty Taylor 2014-09-05 10:56:09 -07:00
commit 5d335dcff2
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class DoxYaml(object):
return " ".join([self._open_dox_yaml().get('commands')] + extra_args)
def get_prep_commands(self):
return self._open_dox_yaml().get('prep')
return self._open_dox_yaml().get('prep', [])
def get_add_files(self):
return self._open_dox_yaml().get('add', [])