Remove py26 format literals

Resolves #403
This commit is contained in:
Anthony Sottile 2016-09-15 08:17:18 -07:00
parent 26e60fa333
commit b81c9802ae
28 changed files with 58 additions and 58 deletions

View file

@ -75,7 +75,7 @@ def normexe(orig_exe):
exe = find_executable(orig_exe)
if exe is None:
raise ExecutableNotFoundError(
'Executable `{0}` not found'.format(orig_exe),
'Executable `{}` not found'.format(orig_exe),
)
return exe
else: