From e807ad43d725da06bfc34187b387270baea74887 Mon Sep 17 00:00:00 2001 From: Kevin KIN-FOO Date: Tue, 30 Dec 2014 16:34:15 +0100 Subject: [PATCH] Mentioning libssh2 in remote's pydoc --- pygit2/remote.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pygit2/remote.py b/pygit2/remote.py index 88d875d..9a58213 100644 --- a/pygit2/remote.py +++ b/pygit2/remote.py @@ -197,7 +197,7 @@ class Remote(object): def fetch(self, signature=None, message=None): """fetch(signature, message) -> TransferProgress - Perform a fetch against this remote. + Perform a fetch against this remote. May require libssh2. """ # Get the default callbacks first @@ -317,6 +317,7 @@ class Remote(object): """push(refspec, signature, message) Push the given refspec to the remote. Raises ``GitError`` on error. + May require libssh2. :param str spec: push refspec to use :param Signature signature: signature to use when updating the tips