diff options
author | Kenneth Hoste <kenneth.hoste@ugent.be> | 2016-05-26 08:52:30 +0200 |
---|---|---|
committer | Kenneth Hoste <kenneth.hoste@ugent.be> | 2016-05-26 08:52:30 +0200 |
commit | 9989f8965f34af5009361ec58f80bbf3ca75b465 (patch) | |
tree | 9f59f23d4eb99d911c50b157fb93ef4f83a07f18 /git/cmd.py | |
parent | 1537aabfa3bb32199e321766793c87864f36ee9a (diff) | |
download | gitpython-9989f8965f34af5009361ec58f80bbf3ca75b465.tar.gz |
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 |