Skip to content

Commit 15dd52c

Browse files
committed
tabs to 4 spaces - overall state of this branch is desolate, but fixable. Needs plenty of work
1 parent 660bdca commit 15dd52c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+20083
-20082
lines changed

‎git/__init__.py

+18-18
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313

1414
#{ Initialization
1515
def _init_externals():
16-
"""Initialize external projects by putting them into the path"""
17-
ext_base = os.path.join(os.path.dirname(__file__), 'ext')
18-
for package in ('async', 'smmap'):
19-
sys.path.append(os.path.join(ext_base, package))
20-
try:
21-
__import__(package)
22-
except ImportError:
23-
raise ImportError("%r could not be found in your PYTHONPATH" % package)
24-
#END verify import
25-
#END handle external import
26-
16+
"""Initialize external projects by putting them into the path"""
17+
ext_base = os.path.join(os.path.dirname(__file__), 'ext')
18+
for package in ('async', 'smmap'):
19+
sys.path.append(os.path.join(ext_base, package))
20+
try:
21+
__import__(package)
22+
except ImportError:
23+
raise ImportError("%r could not be found in your PYTHONPATH" % package)
24+
#END verify import
25+
#END handle external import
26+
2727
#} END initialization
2828

2929
#################
@@ -43,14 +43,14 @@ def _init_externals():
4343
from git.index import *
4444
from git.repo import Repo
4545
from git.util import (
46-
LockFile,
47-
BlockingLockFile,
48-
Stats,
49-
Actor
50-
)
46+
LockFile,
47+
BlockingLockFile,
48+
Stats,
49+
Actor
50+
)
5151

5252
#} END imports
5353

5454
__all__ = [ name for name, obj in locals().items()
55-
if not (name.startswith('_') or inspect.ismodule(obj)) ]
56-
55+
if not (name.startswith('_') or inspect.ismodule(obj)) ]
56+

0 commit comments

Comments
 (0)