From 0723290c45254edc29118e54d5e5db4a4d3c7c19 Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Mon, 6 Jan 2014 22:57:48 +0100 Subject: [PATCH] Remove nonsensical 'more' in a task description --- providers/ec2/tasks/host.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/ec2/tasks/host.py b/providers/ec2/tasks/host.py index 9ae1972..661f01f 100644 --- a/providers/ec2/tasks/host.py +++ b/providers/ec2/tasks/host.py @@ -4,7 +4,7 @@ from common.tasks import host class HostDependencies(Task): - description = 'Adding more required host packages' + description = 'Adding required host packages for EC2 bootstrapping' phase = phases.preparation successors = [host.CheckHostDependencies]