def showConfig(self, args): """ Shows the config variables """ app_name, deployment_name = self.parse_app_deployment_name(args.name) if not deployment_name: deployment_name = "default" config = self._get_config_vars(app_name, deployment_name) if config: print_config(config, args.key) else: print "[ERROR] No configuration variables for this deployment." return True
def showConfig(self, args): """ Shows the config variables """ #noinspection PyTupleAssignmentBalance app_name, deployment_name = self.parse_app_deployment_name(args.name) if not deployment_name: raise InputErrorException('NoDeployment') config = self._get_config_vars(app_name, deployment_name) if config: print_config(config, args.key) else: print '[ERROR] No configuration variables for this deployment.' return True