From 27c03464553bc7ef3400c85a08a55c36c38a495d Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Sun, 5 Jan 2014 02:19:28 +0100 Subject: [PATCH] Minor import stmt and dependency fix --- common/tasks/development.py | 2 +- plugins/image_commands/tasks.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/common/tasks/development.py b/common/tasks/development.py index 24dcb65..cf8a546 100644 --- a/common/tasks/development.py +++ b/common/tasks/development.py @@ -1,5 +1,5 @@ from base import Task -import phases +from common import phases class TriggerRollback(Task): diff --git a/plugins/image_commands/tasks.py b/plugins/image_commands/tasks.py index 619186c..667d63d 100644 --- a/plugins/image_commands/tasks.py +++ b/plugins/image_commands/tasks.py @@ -1,12 +1,10 @@ from base import Task from common import phases -from plugins.packages import tasks as packages class ImageExecuteCommand(Task): description = 'Execute command in the image' phase = phases.system_modification - predecessors = [packages.AddUserPackages, packages.AddLocalUserPackages] def run(self, info): from common.tools import log_check_call