Fix: pass push_opts to git_remote_push

This commit is contained in:
David Six 2015-08-26 11:15:47 -04:00
parent 27e3450232
commit 25d02259df

@ -246,7 +246,7 @@ class Remote(object):
try:
with StrArray(specs) as refspecs:
err = C.git_remote_push(self._remote, refspecs, ffi.NULL)
err = C.git_remote_push(self._remote, refspecs, push_opts)
check_error(err)
finally:
self._self_handle = None