Changeset - 092ea4d40d60
[Not reviewed]
stable
0 1 0
Mads Kiilerich - 10 years ago 2015-09-30 23:19:46
madski@unity3d.com
git: fix typo in error logging from 1ea1761bab12
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/lib/vcs/backends/git/repository.py
Show inline comments
 
@@ -678,7 +678,7 @@ class GitRepository(BaseRepository):
 
            if e.errno not in [errno.ENOENT, errno.EROFS]:
 
                raise
 
            # Workaround for dulwich crashing on for example its own dulwich/tests/data/repos/simple_merge.git/info/refs.lock
 
            log.error('Ignoring %s running update-server-info: %s', type(e).name, e)
 
            log.error('Ignoring %s running update-server-info: %s', type(e).__name__, e)
 

	
 
    @LazyProperty
 
    def workdir(self):
0 comments (0 inline, 0 general)