mirror of
https://github.com/beetbox/beets.git
synced 2026-01-02 14:03:12 +01:00
Fix py26 string format
This commit is contained in:
parent
75c6af6329
commit
eb8ccef8e6
1 changed files with 2 additions and 2 deletions
|
|
@ -607,7 +607,7 @@ class ImportTest(_common.TestCase, ImportHelper):
|
|||
with capture_log() as logs:
|
||||
self.importer.run()
|
||||
|
||||
self.assertIn('No files imported from {}'.format(import_dir), logs)
|
||||
self.assertIn('No files imported from {0}'.format(import_dir), logs)
|
||||
|
||||
def test_empty_directory_singleton_warning(self):
|
||||
import_dir = os.path.join(self.temp_dir, 'empty')
|
||||
|
|
@ -616,7 +616,7 @@ class ImportTest(_common.TestCase, ImportHelper):
|
|||
with capture_log() as logs:
|
||||
self.importer.run()
|
||||
|
||||
self.assertIn('No files imported from {}'.format(import_dir), logs)
|
||||
self.assertIn('No files imported from {0}'.format(import_dir), logs)
|
||||
|
||||
|
||||
class ImportTracksTest(_common.TestCase, ImportHelper):
|
||||
|
|
|
|||
Loading…
Reference in a new issue