summaryrefslogtreecommitdiff
path: root/openstackclient/common/module.py
diff options
context:
space:
mode:
authorChristian Berendt <berendt@b1-systems.de>2014-05-20 13:11:19 +0200
committerChristian Berendt <berendt@b1-systems.de>2014-05-20 13:49:56 +0200
commit3b485de6b0495d1e9f6d659463a187d73a783594 (patch)
tree9edd5a76451b0b32682d7761e2b0189036db26f9 /openstackclient/common/module.py
parent870e7ddbcce5d5f1b1bd36bb3ad95665565b3ced (diff)
downloadpython-openstackclient-3b485de6b0495d1e9f6d659463a187d73a783594.tar.gz
replace string format arguments with function parameters
There are files containing string format arguments inside logging messages. Using logging function parameters should be preferred. Change-Id: Ic749ac9eb55564ed631d57055a5a4dfc3aebd169
Diffstat (limited to 'openstackclient/common/module.py')
-rw-r--r--openstackclient/common/module.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/common/module.py b/openstackclient/common/module.py
index 4a7f0626..7f9c52db 100644
--- a/openstackclient/common/module.py
+++ b/openstackclient/common/module.py
@@ -39,7 +39,7 @@ class ListModule(show.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)
data = {}
# Get module versions