From 8f39add44ab7a7352629a4674dbf6b7ffb414b67 Mon Sep 17 00:00:00 2001 From: Wagner Augusto Andreoli Date: Sat, 7 Nov 2015 21:21:57 +0100 Subject: [PATCH] Change string interpolation from % to .format() --- {{cookiecutter.app_name}}/manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/manage.py b/{{cookiecutter.app_name}}/manage.py index d86f354..dda683b 100755 --- a/{{cookiecutter.app_name}}/manage.py +++ b/{{cookiecutter.app_name}}/manage.py @@ -57,7 +57,7 @@ class Lint(Command): def execute_tool(description, *args): """Execute a checking tool with its arguments.""" command_line = list(args) + files_and_directories - print('%s: %s' % (description, ' '.join(command_line))) + print('{}: {}'.format(description, ' '.join(command_line))) rv = call(command_line) if rv is not 0: exit(rv)