summaryrefslogtreecommitdiff
path: root/openstackclient/compute/v2/fixedip.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-06-10 02:27:54 +0000
committerGerrit Code Review <review@openstack.org>2014-06-10 02:27:54 +0000
commit3b925e9806cb942c6333d4038ebdad65cd9390df (patch)
treec45cfc24199950628d61952ed9d24d641707b3e9 /openstackclient/compute/v2/fixedip.py
parentfb656527530444c116dce493abd85cc69e8902fb (diff)
parent3b485de6b0495d1e9f6d659463a187d73a783594 (diff)
downloadpython-openstackclient-3b925e9806cb942c6333d4038ebdad65cd9390df.tar.gz
Merge "replace string format arguments with function parameters"
Diffstat (limited to 'openstackclient/compute/v2/fixedip.py')
-rw-r--r--openstackclient/compute/v2/fixedip.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/compute/v2/fixedip.py b/openstackclient/compute/v2/fixedip.py
index c41fed45..d105e391 100644
--- a/openstackclient/compute/v2/fixedip.py
+++ b/openstackclient/compute/v2/fixedip.py
@@ -42,7 +42,7 @@ class AddFixedIP(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)
compute_client = self.app.client_manager.compute
network = utils.find_resource(
@@ -75,7 +75,7 @@ class RemoveFixedIP(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)
compute_client = self.app.client_manager.compute
server = utils.find_resource(