diff options
Diffstat (limited to 'git/test/test_config.py')
-rw-r--r-- | git/test/test_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_config.py b/git/test/test_config.py index 93f94748..83e510be 100644 --- a/git/test/test_config.py +++ b/git/test/test_config.py @@ -38,7 +38,7 @@ class TestBase(TestCase): def tearDown(self): for lfp in glob.glob(_tc_lock_fpaths): if osp.isfile(lfp): - raise AssertionError('Previous TC left hanging git-lock file: %s', lfp) + raise AssertionError('Previous TC left hanging git-lock file: {}'.format(lfp)) def _to_memcache(self, file_path): with open(file_path, "rb") as fp: |