Minor import stmt and dependency fix

This commit is contained in:
Anders Ingemann 2014-01-05 02:19:28 +01:00
parent 44b23c9cd8
commit 27c0346455
2 changed files with 1 additions and 3 deletions

View file

@ -1,5 +1,5 @@
from base import Task from base import Task
import phases from common import phases
class TriggerRollback(Task): class TriggerRollback(Task):

View file

@ -1,12 +1,10 @@
from base import Task from base import Task
from common import phases from common import phases
from plugins.packages import tasks as packages
class ImageExecuteCommand(Task): class ImageExecuteCommand(Task):
description = 'Execute command in the image' description = 'Execute command in the image'
phase = phases.system_modification phase = phases.system_modification
predecessors = [packages.AddUserPackages, packages.AddLocalUserPackages]
def run(self, info): def run(self, info):
from common.tools import log_check_call from common.tools import log_check_call