We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d882af commit 0faf18fCopy full SHA for 0faf18f
libvcs/shortcuts.py
@@ -44,11 +44,11 @@ def create_repo(
44
Already up-to-date.
45
"""
46
if vcs == "git":
47
- return GitRepo(url, **kwargs)
+ return GitRepo(url, progress_callback=progress_callback, **kwargs)
48
elif vcs == "hg":
49
- return MercurialRepo(url, **kwargs)
+ return MercurialRepo(url, progress_callback=progress_callback, **kwargs)
50
elif vcs == "svn":
51
- return SubversionRepo(url, **kwargs)
+ return SubversionRepo(url, progress_callback=progress_callback, **kwargs)
52
else:
53
raise InvalidVCS("VCS %s is not a valid VCS" % vcs)
54
0 commit comments