diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2016-05-26 09:13:56 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2016-05-26 09:13:56 +0200 |
commit | 8486f2d2e5c251d0fa891235a692fa8b1a440a89 (patch) | |
tree | 9f59f23d4eb99d911c50b157fb93ef4f83a07f18 /git/cmd.py | |
parent | 1537aabfa3bb32199e321766793c87864f36ee9a (diff) | |
parent | 9989f8965f34af5009361ec58f80bbf3ca75b465 (diff) | |
download | gitpython-8486f2d2e5c251d0fa891235a692fa8b1a440a89.tar.gz |
Merge pull request #443 from boegel/fix_ordereddict
import OrderedDict from git.odict rather than directly from collections, to pix Py2.6 compatibility
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ import threading import errno import mmap -from collections import OrderedDict +from git.odict import OrderedDict from contextlib import contextmanager import signal |