summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2021-07-28 14:14:58 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-07-28 14:14:58 +0800
commit76c1c8dd13806d88231c110c47468c71d4b370f1 (patch)
tree77d8930c4fbceedc81ff54315b63098d6f0391c2
parent005f81ae3daeef3575cba0fd9deb84d15eca5835 (diff)
downloadgitpython-76c1c8dd13806d88231c110c47468c71d4b370f1.tar.gz
Revert "More specific version check for ordered dict type"
This reverts commit 005f81ae3daeef3575cba0fd9deb84d15eca5835.
-rw-r--r--git/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/config.py b/git/config.py
index 78b93c6f..c4b26ba6 100644
--- a/git/config.py
+++ b/git/config.py
@@ -41,7 +41,7 @@ if TYPE_CHECKING:
T_ConfigParser = TypeVar('T_ConfigParser', bound='GitConfigParser')
-if sys.version_info[:3] < (3, 7, 2):
+if sys.version_info[:2] < (3, 7):
from collections import OrderedDict
OrderedDict_OMD = OrderedDict
else: