summaryrefslogtreecommitdiff
path: root/heatclient/osc
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-02-14 08:59:23 +0000
committerGerrit Code Review <review@openstack.org>2017-02-14 08:59:23 +0000
commit07ea7d95b8c54dc9960f93c0cb278f614cf14989 (patch)
tree6752fc153321b74f818f9d15e1b990db766412ce /heatclient/osc
parent28cf99603a308640af604a83f3b3083ce3ad0d35 (diff)
parent28d8082f9ba50b95c699ab9a2473cd3421dc8048 (diff)
downloadpython-heatclient-07ea7d95b8c54dc9960f93c0cb278f614cf14989.tar.gz
Merge "Handle log message interpolation by the logger"
Diffstat (limited to 'heatclient/osc')
-rw-r--r--heatclient/osc/v1/snapshot.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/heatclient/osc/v1/snapshot.py b/heatclient/osc/v1/snapshot.py
index b5cc781..13818f8 100644
--- a/heatclient/osc/v1/snapshot.py
+++ b/heatclient/osc/v1/snapshot.py
@@ -40,7 +40,7 @@ class ListSnapshot(command.Lister):
return parser
def take_action(self, parsed_args):
- self.log.debug('take_action(%s)' % parsed_args)
+ self.log.debug('take_action(%s)', parsed_args)
heat_client = self.app.client_manager.orchestration
return self._list_snapshot(heat_client, parsed_args)
@@ -80,7 +80,7 @@ class ShowSnapshot(format_utils.YamlFormat):
return parser
def take_action(self, parsed_args):
- self.log.debug('take_action(%s)' % parsed_args)
+ self.log.debug('take_action(%s)', parsed_args)
heat_client = self.app.client_manager.orchestration
return self._show_snapshot(heat_client, parsed_args.stack,
parsed_args.snapshot)
@@ -119,7 +119,7 @@ class RestoreSnapshot(command.Command):
return parser
def take_action(self, parsed_args):
- self.log.debug('take_action(%s)' % parsed_args)
+ self.log.debug('take_action(%s)', parsed_args)
heat_client = self.app.client_manager.orchestration
return self._restore_snapshot(heat_client, parsed_args)
@@ -155,7 +155,7 @@ class CreateSnapshot(command.ShowOne):
return parser
def take_action(self, parsed_args):
- self.log.debug('take_action(%s)' % parsed_args)
+ self.log.debug('take_action(%s)', parsed_args)
heat_client = self.app.client_manager.orchestration
try:
@@ -195,7 +195,7 @@ class DeleteSnapshot(command.Command):
return parser
def take_action(self, parsed_args):
- self.log.debug('take_action(%s)' % parsed_args)
+ self.log.debug('take_action(%s)', parsed_args)
heat_client = self.app.client_manager.orchestration
try:
heat_client.stacks.snapshot_delete(parsed_args.stack,