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

@ -61,7 +61,7 @@ def make_archive(name, repo, ref, destdir):
def main():
for archive_name, repo, ref in REPOS:
print('Making {0}.tar.gz for {1}@{2}'.format(archive_name, repo, ref))
print('Making {}.tar.gz for {}@{}'.format(archive_name, repo, ref))
make_archive(archive_name, repo, ref, RESOURCES_DIR)