mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
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:
parent
fa09050150
commit
640f0c17c6
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue