pygit2: Prevent traceback on initial gitfs setup

Newer pygit2 releases require that this value be a string, they will not
accept a bool here.
This commit is contained in:
Erik Johnson 2016-09-07 17:12:05 -05:00
parent fa09050150
commit 640f0c17c6

View file

@ -1213,7 +1213,7 @@ class Pygit2(GitProvider):
self.repo.config.set_multivar(
'http.sslVerify',
'',
self.ssl_verify
str(self.ssl_verify).lower()
)
except os.error:
# This exception occurs when two processes are trying to write