Commit 23ba1439 authored by Michal Čihař's avatar Michal Čihař

Use logging native formatting

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 234c1c10
......@@ -102,7 +102,7 @@ class Command(BaseCommand):
"""
matches = self.match_regexp.match(path)
if matches is None:
self.logger.warning('Skipping {0}'.format(path))
self.logger.warning('Skipping %s', path)
return None
return matches.group('name')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment