Remove default argument (info={}) in tasklist.run

This commit is contained in:
Anders Ingemann 2014-04-07 21:49:34 +02:00
parent bbea12599c
commit a0bc989459

View file

@ -35,7 +35,7 @@ class TaskList(object):
if callable(fn): if callable(fn):
fn(self.tasks, manifest, *args) fn(self.tasks, manifest, *args)
def run(self, info={}, dry_run=False): def run(self, info, dry_run=False):
"""Converts the taskgraph into a list and runs all tasks in that list """Converts the taskgraph into a list and runs all tasks in that list
Args: Args: