From 65e3f375202ea3c7404bcbde4ca6ff81a6f6339f Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Sun, 15 Dec 2013 11:44:36 +0100 Subject: [PATCH] Rename image_commands task module to "tasks" --- plugins/image_commands/__init__.py | 2 +- plugins/image_commands/{image_commands.py => tasks.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename plugins/image_commands/{image_commands.py => tasks.py} (100%) diff --git a/plugins/image_commands/__init__.py b/plugins/image_commands/__init__.py index 34bb534..f7cfa69 100644 --- a/plugins/image_commands/__init__.py +++ b/plugins/image_commands/__init__.py @@ -7,5 +7,5 @@ def validate_manifest(data, schema_validate): def resolve_tasks(tasklist, manifest): - from image_commands import ImageExecuteCommand + from tasks import ImageExecuteCommand tasklist.add(ImageExecuteCommand) diff --git a/plugins/image_commands/image_commands.py b/plugins/image_commands/tasks.py similarity index 100% rename from plugins/image_commands/image_commands.py rename to plugins/image_commands/tasks.py