diff options
author | Cory Johns <johnsca@gmail.com> | 2014-01-30 10:39:47 -0800 |
---|---|---|
committer | Cory Johns <johnsca@gmail.com> | 2014-01-30 10:39:47 -0800 |
commit | b8f10e74d815223341c3dd3b647910b6e6841bd6 (patch) | |
tree | 1fbeea50e02fca2f651bce8de620d326d3ea9716 /git/util.py | |
parent | c6b08c27a031f8b8b0bb6c41747ca1bc62b72706 (diff) | |
parent | 2e6957abf8cd88824282a19b74497872fe676a46 (diff) | |
download | gitpython-b8f10e74d815223341c3dd3b647910b6e6841bd6.tar.gz |
Merge pull request #1 from brondsem/patch-1
Fix missed import from d3a7282
Diffstat (limited to 'git/util.py')
-rw-r--r-- | git/util.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/git/util.py b/git/util.py index 130d7762..0a533e50 100644 --- a/git/util.py +++ b/git/util.py @@ -13,6 +13,8 @@ import shutil import tempfile import platform +from exc import GitCommandError + from gitdb.util import ( make_sha, LockedFD, |