Fix #249: Quoting format is integer, not string.

This commit is contained in:
Romain Dorgueil
2018-02-03 17:11:23 +01:00
parent aa6e426768
commit 02eeaff883
19 changed files with 68 additions and 47 deletions

View File

@ -56,7 +56,7 @@ class ETLCommand(BaseCommand):
graph_coll = self.get_graph(*args, **options)
if not isinstance(graph_coll, GeneratorType):
graph_coll = (graph_coll,)
graph_coll = (graph_coll, )
for i, graph in enumerate(graph_coll):
assert isinstance(graph, bonobo.Graph), 'Invalid graph provided.'