[deps] Weekly dependency update.

This commit is contained in:
Romain Dorgueil
2017-06-10 13:35:02 +02:00
parent 89104af3a0
commit 2b584935c5
4 changed files with 6 additions and 4 deletions

View File

@ -7,7 +7,9 @@ def execute(name, branch):
) from exc
return cookiecutter(
'https://github.com/python-bonobo/cookiecutter-bonobo.git', extra_context={'name': name}, no_input=True,
'https://github.com/python-bonobo/cookiecutter-bonobo.git',
extra_context={'name': name},
no_input=True,
checkout=branch
)

View File

@ -3,7 +3,7 @@ import os
DEFAULT_SERVICES_FILENAME = '_services.py'
DEFAULT_SERVICES_ATTR = 'get_services'
DEFAULT_GRAPH_FILENAMES = ('__main__.py', 'main.py',)
DEFAULT_GRAPH_FILENAMES = ('__main__.py', 'main.py', )
DEFAULT_GRAPH_ATTR = 'get_graph'