summaryrefslogtreecommitdiff
path: root/git/repo/base.py
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2015-06-29 18:57:27 -0400
committerJon Lund Steffensen <jonlst@gmail.com>2015-06-29 18:57:27 -0400
commit85a45a691ad068a4a25566cc1ed26db09d46daa4 (patch)
treeb89ed15f7cbd9369f43560409cfa08748757859f /git/repo/base.py
parent195ecc3da4a851734a853af6d739c21b44e0d7f0 (diff)
downloadgitpython-85a45a691ad068a4a25566cc1ed26db09d46daa4.tar.gz
Fix docstring of Repo.clone_from()
Diffstat (limited to 'git/repo/base.py')
-rw-r--r--git/repo/base.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/git/repo/base.py b/git/repo/base.py
index 88e21379..03ef5a97 100644
--- a/git/repo/base.py
+++ b/git/repo/base.py
@@ -853,6 +853,7 @@ class Repo(object):
@classmethod
def clone_from(cls, url, to_path, progress=None, **kwargs):
"""Create a clone from the given URL
+
:param url: valid git url, see http://www.kernel.org/pub/software/scm/git/docs/git-clone.html#URLS
:param to_path: Path to which the repository should be cloned to
:param progress: See 'git.remote.Remote.push'.