diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-28 22:17:39 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-28 22:17:39 +0100 |
commit | 8b5121414aaf2648b0e809e926d1016249c0222c (patch) | |
tree | e41495ec396a8259c30302e0a1aa7489f607b2d1 /lib/git | |
parent | 685d6e651197d54e9a3e36f5adbadd4d21f4c7e5 (diff) | |
download | gitpython-8b5121414aaf2648b0e809e926d1016249c0222c.tar.gz |
Another attempt to make fetch emit progress information, but in fact its proven now that this is not happening if stderr is being redirected. A test is in place that will most likely fail in case this ever changes
Diffstat (limited to 'lib/git')
-rw-r--r-- | lib/git/repo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/repo.py b/lib/git/repo.py index 2383eb2a..d81106c0 100644 --- a/lib/git/repo.py +++ b/lib/git/repo.py @@ -625,7 +625,7 @@ class Repo(object): Create a clone from this repository. ``path`` - is the full path of the new repo (traditionally ends with /<name>.git) + is the full path of the new repo (traditionally ends with ./<name>.git). ``kwargs`` keyword arguments to be given to the git-clone command |