From d83c2c040f67aac5fb663ada645f72a31426ed6f Mon Sep 17 00:00:00 2001 From: Gabriel Monroy Date: Thu, 25 Jul 2013 18:28:09 -0600 Subject: [PATCH] change print on layer:create --- client/deis/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/deis/client.py b/client/deis/client.py index 5698837c1f..dacfc55943 100755 --- a/client/deis/client.py +++ b/client/deis/client.py @@ -720,7 +720,7 @@ def layers_create(self, args): o = args.get(opt) if o: body.update({opt.strip('-'): o}) - sys.stdout.write('Creating layer {}...'.format(args[''])) + sys.stdout.write('Creating {} layer... '.format(args[''])) sys.stdout.flush() response = self._dispatch('post', '/api/formations/{}/layers'.format(formation), json.dumps(body))