diff options
-rw-r--r-- | git/objects/submodule/base.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git/objects/submodule/base.py b/git/objects/submodule/base.py index 9c1dc647..4347df55 100644 --- a/git/objects/submodule/base.py +++ b/git/objects/submodule/base.py @@ -136,7 +136,8 @@ class Submodule(util.IndexObject, Iterable, Traversable): @classmethod def _need_gitfile_submodules(cls, git): - return git.version_info[:3] >= (1, 8, 0) + # 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) def __eq__(self, other): """Compare with another submodule""" |