diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2018-03-24 13:45:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-24 13:45:17 +0100 |
| commit | f3265bd8beb017890699d093586126ff8af4a3fe (patch) | |
| tree | ccf02df66dbb979c7f6da6949456902a06aa1b1e /git/config.py | |
| parent | 9f12b26b81a8e7667b2a26a7878e5bc033610ed5 (diff) | |
| parent | 80b038f8d8c7c67c148ebd7a5f7a0cb39541b761 (diff) | |
| download | GitPython-f3265bd8beb017890699d093586126ff8af4a3fe.tar.gz GitPython-f3265bd8beb017890699d093586126ff8af4a3fe.zip | |
Merge pull request #737 from hugovk/rm-2.6
Drop support for EOL Python 2.6 and 3.3
Diffstat (limited to 'git/config.py')
| -rw-r--r-- | git/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/config.py b/git/config.py index 3310db89..68d65ae9 100644 --- a/git/config.py +++ b/git/config.py @@ -12,6 +12,7 @@ import inspect import logging import os import re +from collections import OrderedDict from git.compat import ( string_types, @@ -21,7 +22,6 @@ from git.compat import ( with_metaclass, PY3 ) -from git.odict import OrderedDict from git.util import LockFile import os.path as osp |
