Revision 144b3551 kamaki/cli/argument.py

b/kamaki/cli/argument.py
181 181
    def get_global(self, option):
182 182
        return self.value.get_global(option)
183 183

  
184
    def get_remote(self, remote, option):
185
        return self.value.get_remote(remote, option)
184
    def get_cloud(self, cloud, option):
185
        return self.value.get_cloud(cloud, option)
186 186

  
187 187
_config_arg = ConfigArgument(
188 188
    1, 'Path to configuration file', ('-c', '--config'))
......
409 409

  
410 410
_arguments = dict(
411 411
    config=_config_arg,
412
    cloud=ValueArgument('Chose a remote cloud to connect to', ('--cloud')),
412
    cloud=ValueArgument('Chose a cloud to connect to', ('--cloud')),
413 413
    help=Argument(0, 'Show help message', ('-h', '--help')),
414 414
    debug=FlagArgument('Include debug output', ('-d', '--debug')),
415 415
    include=FlagArgument(

Also available in: Unified diff