aboutsummaryrefslogtreecommitdiff
path: root/git/db/dulwich/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/db/dulwich/__init__.py')
-rw-r--r--git/db/dulwich/__init__.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/git/db/dulwich/__init__.py b/git/db/dulwich/__init__.py
index 92d30941..94aa8660 100644
--- a/git/db/dulwich/__init__.py
+++ b/git/db/dulwich/__init__.py
@@ -1,13 +1,13 @@
"""Dulwich module initialization"""
-def init_dulwich():
- """:raise ImportError: if dulwich is not present"""
- try:
- import dulwich
- except ImportError:
- raise ImportError("Could not find 'dulwich' in the PYTHONPATH - dulwich functionality is not available")
- #END handle dulwich import
+def init_dulwich():
+ """:raise ImportError: if dulwich is not present"""
+ try:
+ import dulwich
+ except ImportError:
+ raise ImportError("Could not find 'dulwich' in the PYTHONPATH - dulwich functionality is not available")
+ # END handle dulwich import
init_dulwich()