From a253e643b72d8f40a5e0fa4e2ba7f73a3cc8d376 Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Tue, 8 Apr 2014 22:04:29 +0200 Subject: [PATCH] Fix some task descriptions --- bootstrapvz/common/tasks/bootstrap.py | 2 +- bootstrapvz/common/tasks/filesystem.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrapvz/common/tasks/bootstrap.py b/bootstrapvz/common/tasks/bootstrap.py index 2274c60..f39656b 100644 --- a/bootstrapvz/common/tasks/bootstrap.py +++ b/bootstrapvz/common/tasks/bootstrap.py @@ -7,7 +7,7 @@ log = logging.getLogger(__name__) class AddRequiredCommands(Task): - description = 'Adding commands required bootstrapping Debian' + description = 'Adding commands required for bootstrapping Debian' phase = phases.preparation successors = [host.CheckExternalCommands] diff --git a/bootstrapvz/common/tasks/filesystem.py b/bootstrapvz/common/tasks/filesystem.py index 71845f6..77f277c 100644 --- a/bootstrapvz/common/tasks/filesystem.py +++ b/bootstrapvz/common/tasks/filesystem.py @@ -8,7 +8,7 @@ import volume class AddRequiredCommands(Task): - description = 'Adding commands required for formatting the partitions' + description = 'Adding commands required for formatting' phase = phases.preparation successors = [host.CheckExternalCommands]