@@ -146,22 +146,17 @@ def add_arguments(self, parser):
146146 parser .add_argument ("-r" , "--region" , default = "us-east-1" ,
147147 help = "The AWS region to launch in. Default: "
148148 "%(default)s" )
149- parser .add_argument ("-e" , "--environment" , type = yaml_file_type ,
150- default = {},
151- help = "Path to a yaml environment file. The values "
152- "in the environment file can be used in the "
153- "stack config as if it were a "
154- "string.Template type: "
155- "https://docs.python.org/2/library/"
156- "string.html#template-strings" )
157149 parser .add_argument ("-v" , "--verbose" , action = "count" , default = 0 ,
158150 help = "Increase output verbosity. May be specified "
159151 "up to twice." )
160- parser .add_argument ("namespace" ,
161- help = "The namespace for the stack collection. "
162- "This will be used as the prefix to the "
163- "cloudformation stacks as well as the s3 "
164- "bucket where templates are stored." )
165- parser .add_argument ("config" , type = argparse .FileType (),
166- help = "The config file where stack configuration "
167- "is located. Must be in yaml format." )
152+ parser .add_argument ('environment' , type = yaml_file_type ,
153+ default = {},
154+ help = "Path to a yaml environment file. The values in "
155+ "the environment file can be used in the stack "
156+ "config as if it were a string.Template type: "
157+ "https://docs.python.org/2/library/string.html"
158+ "#template-strings. Must define at least a "
159+ "'namespace'." )
160+ parser .add_argument ('config' , type = argparse .FileType (),
161+ help = "The config file where stack configuration is "
162+ "located. Must be in yaml format." )
0 commit comments