diff options
-rw-r--r-- | git/objects/submodule/base.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/git/objects/submodule/base.py b/git/objects/submodule/base.py index 4347df55..7e8dd053 100644 --- a/git/objects/submodule/base.py +++ b/git/objects/submodule/base.py @@ -136,8 +136,7 @@ class Submodule(util.IndexObject, Iterable, Traversable): @classmethod def _need_gitfile_submodules(cls, git): - # on debian wheezy, it seems to already support git files at this version. Maybe even earler, who knows - return git.version_info[:3] >= (1, 7, 10) + return git.version_info[:3] >= (1, 7, 0) def __eq__(self, other): """Compare with another submodule""" |