summaryrefslogtreecommitdiff
path: root/vmdb/app.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-02-13 09:11:53 +0200
committerLars Wirzenius <liw@liw.fi>2019-02-13 09:11:53 +0200
commit6fd6acf37cbad73ef929ef6a159073862ad2e048 (patch)
tree741e9a39df59f2941d92234f5dc99b391095c40e /vmdb/app.py
parentb1a6e4f44d90b80a48772e2dd89598793a16f48c (diff)
downloadvmdb2-6fd6acf37cbad73ef929ef6a159073862ad2e048.tar.gz
Change: add pylint3 back to check, fix issues it finds
This commit is dedicated to Gunnar.
Diffstat (limited to 'vmdb/app.py')
-rw-r--r--vmdb/app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vmdb/app.py b/vmdb/app.py
index fb28145..5073a05 100644
--- a/vmdb/app.py
+++ b/vmdb/app.py
@@ -103,7 +103,7 @@ class Vmdb2(cliapp.Application):
]
for method in methods:
- logging.info('Calling {}'.format(method))
+ logging.info('Calling %s', method)
method(step, self.settings, state)
except BaseException as e:
vmdb.error(str(e))