diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-28 12:03:18 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-28 14:11:15 +0100 |
commit | dc518251eb64c3ef90502697a7e08abe3f8310b2 (patch) | |
tree | ab6989201ad2020bc140bfabe57935a578258612 /lib/git/__init__.py | |
parent | 146a6fe18da94e12aa46ec74582db640e3bbb3a9 (diff) | |
download | gitpython-dc518251eb64c3ef90502697a7e08abe3f8310b2.tar.gz |
FetchInfo class is not a subclass of Remote class anymore, as more classes are to be added it cluttered up the view and made things more complex as well
Diffstat (limited to 'lib/git/__init__.py')
-rw-r--r-- | lib/git/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/__init__.py b/lib/git/__init__.py index e3043dc9..c7efe5ea 100644 --- a/lib/git/__init__.py +++ b/lib/git/__init__.py @@ -18,7 +18,7 @@ from git.errors import InvalidGitRepositoryError, NoSuchPathError, GitCommandErr from git.cmd import Git from git.repo import Repo from git.stats import Stats -from git.remote import Remote +from git.remote import * from git.index import * __all__ = [ name for name, obj in locals().items() |