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

@ -417,7 +417,7 @@ def test_lots_of_files(mock_out_store_directory, tempdir_factory):
# Write a crap ton of files
for i in range(400):
filename = '{0}{1}'.format('a' * 100, i)
filename = '{}{}'.format('a' * 100, i)
open(filename, 'w').close()
cmd_output('bash', '-c', 'git add .')