diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2016-05-29 10:29:54 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2016-05-29 10:29:54 +0200 |
commit | 98889c3ec73bf929cdcb44b92653e429b4955652 (patch) | |
tree | ef0ffb25c03aca53053308c91cd05d972e72bc5c /git/repo/base.py | |
parent | ece57af3b69c38f4dcd19e8ccdd07ec38f899b23 (diff) | |
download | gitpython-98889c3ec73bf929cdcb44b92653e429b4955652.tar.gz |
chore(misc): cleanup and docs
Minor adjustments to PR to match current code style.
Related to #450
Diffstat (limited to 'git/repo/base.py')
-rw-r--r-- | git/repo/base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/repo/base.py b/git/repo/base.py index 9ba2b1d2..f43cc462 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -33,7 +33,7 @@ from git.config import GitConfigParser from git.remote import ( Remote, add_progress, - progress_object + to_progress_instance ) from git.db import GitCmdObjectDB @@ -873,7 +873,7 @@ class Repo(object): @classmethod def _clone(cls, git, url, path, odb_default_type, progress, **kwargs): - progress = progress_object(progress) + progress = to_progress_instance(progress) # special handling for windows for path at which the clone should be # created. |