diff options
Diffstat (limited to 'git/__init__.py')
-rw-r--r-- | git/__init__.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/git/__init__.py b/git/__init__.py index cc45efe1..7005cd60 100644 --- a/git/__init__.py +++ b/git/__init__.py @@ -58,19 +58,16 @@ from git.util import ( # @NoMove @IgnorePep8 __all__ = [name for name, obj in locals().items() if not (name.startswith('_') or inspect.ismodule(obj))] + #{ Initialize git executable path -def setup(path=None): +def refresh(path=None): """Convenience method for setting the git executable path.""" if not Git.refresh(path=path): return if not FetchInfo.refresh(): return - -def refresh(path=None): - """Convenience method for refreshing the git executable path.""" - setup(path=path) #} END initialize git executable path ################# -setup() +refresh() ################# |