From 9867d84324e0c890155d152fbb0cedb563d2973d Mon Sep 17 00:00:00 2001 From: Rufus125 Date: Tue, 9 Jun 2015 20:38:56 +0200 Subject: [PATCH] Added a newline, which hopefully will fix the readthedocs formatting error --- git/repo/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/git/repo/base.py b/git/repo/base.py index e59cb0c7d..3a15925ad 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -841,6 +841,7 @@ def clone(self, path, progress=None, **kwargs): @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'.