summaryrefslogtreecommitdiff
path: root/git/repo/base.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-01-17 17:19:06 +0100
committerSebastian Thiel <byronimo@gmail.com>2015-01-17 17:19:06 +0100
commitc15a6e1923a14bc760851913858a3942a4193cdb (patch)
treed8dc5acd1ab2502a63b91b34372b4f9cd83d78bc /git/repo/base.py
parentae2b59625e9bde14b1d2d476e678326886ab1552 (diff)
downloadgitpython-c15a6e1923a14bc760851913858a3942a4193cdb.tar.gz
Submodule.remove() now seems to work properly, nearly all tests are back.
This also means that now we seem to be able to properly handle .git files in submodules Related to #233
Diffstat (limited to 'git/repo/base.py')
-rw-r--r--git/repo/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/repo/base.py b/git/repo/base.py
index 74e72aa5..f3dd05b3 100644
--- a/git/repo/base.py
+++ b/git/repo/base.py
@@ -132,8 +132,8 @@ class Repo(object):
# walk up the path to find the .git dir
while curpath:
# ABOUT os.path.NORMPATH
- # It's important to normalize the paths, as submodules will otherwise initialize their
- # repo instances with paths that depend on path-portions that will not exist after being
+ # It's important to normalize the paths, as submodules will otherwise initialize their
+ # repo instances with paths that depend on path-portions that will not exist after being
# removed. It's just cleaner.
if is_git_dir(curpath):
self.git_dir = os.path.normpath(curpath)