From 0068cdc1a8a15061856a962045984126476b9583 Mon Sep 17 00:00:00 2001 From: Tiago Ilieve Date: Fri, 16 Oct 2015 00:06:58 -0300 Subject: [PATCH] gce: fix small typo on `UploadImage` --- bootstrapvz/providers/gce/tasks/image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrapvz/providers/gce/tasks/image.py b/bootstrapvz/providers/gce/tasks/image.py index aad7119..e2f07ca 100644 --- a/bootstrapvz/providers/gce/tasks/image.py +++ b/bootstrapvz/providers/gce/tasks/image.py @@ -35,7 +35,7 @@ class CreateTarball(Task): class UploadImage(Task): - description = 'Uploading image to GSE' + description = 'Uploading image to GCE' phase = phases.image_registration predecessors = [CreateTarball]