diff options
author | Mohit Solanki <mohitsolanki619@gmail.com> | 2019-09-10 13:26:55 +0530 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2019-09-10 13:15:09 +0200 |
commit | a2d8a5144bd8c0940d9f2593a21aec8bebf7c035 (patch) | |
tree | e7a7874da27245018b7cee9efeccc1622023859c /git/test/test_repo.py | |
parent | 07657929bc6c0339d4d2e7e1dde1945199374b90 (diff) | |
download | gitpython-a2d8a5144bd8c0940d9f2593a21aec8bebf7c035.tar.gz |
Fix #889: Add DeepSource config and fix some major issues
Diffstat (limited to 'git/test/test_repo.py')
-rw-r--r-- | git/test/test_repo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_repo.py b/git/test/test_repo.py index c74d4ef4..94f9fdf8 100644 --- a/git/test/test_repo.py +++ b/git/test/test_repo.py @@ -90,7 +90,7 @@ class TestRepo(TestBase): 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)) import gc gc.collect() |