diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-17 17:19:06 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-17 17:19:06 +0100 |
commit | c15a6e1923a14bc760851913858a3942a4193cdb (patch) | |
tree | d8dc5acd1ab2502a63b91b34372b4f9cd83d78bc /git/repo/base.py | |
parent | ae2b59625e9bde14b1d2d476e678326886ab1552 (diff) | |
download | gitpython-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.py | 4 |
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) |