From a0bc989459ec4c418c42324f6f87d6f63bcb4eb7 Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Mon, 7 Apr 2014 21:49:34 +0200 Subject: [PATCH] Remove default argument (info={}) in tasklist.run --- bootstrapvz/base/tasklist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrapvz/base/tasklist.py b/bootstrapvz/base/tasklist.py index 1016246..db83d11 100644 --- a/bootstrapvz/base/tasklist.py +++ b/bootstrapvz/base/tasklist.py @@ -35,7 +35,7 @@ class TaskList(object): if callable(fn): 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 Args: