Skip to content

Commit f54546a

Browse files
committed
Added async submodule, formerly required by gitdb (which is still a valid submodule just yet)
1 parent 9fc7b9a commit f54546a

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22
path = git/ext/gitdb
33
url = git://github.com/gitpython-developers/gitdb.git
44
branch = master
5+
[submodule "git/ext/async"]
6+
path = git/ext/async
7+
url = git://github.com/gitpython-developers/async.git

git/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
#{ Initialization
1515
def _init_externals():
1616
"""Initialize external projects by putting them into the path"""
17-
sys.path.append(os.path.join(os.path.dirname(__file__), 'ext', 'gitdb'))
17+
sys.path.append(os.path.join(os.path.dirname(__file__), 'ext', 'async'))
1818

1919
try:
20-
import gitdb
20+
import async
2121
except ImportError:
22-
raise ImportError("'gitdb' could not be found in your PYTHONPATH")
22+
raise ImportError("'async' could not be found in your PYTHONPATH")
2323
#END verify import
2424

2525
#} END initialization

git/ext/async

Submodule async added at 1031082

0 commit comments

Comments
 (0)