diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-10-26 15:55:26 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-10-26 15:55:26 -0700 |
commit | 922239e7da03f8e0a8c6ba809c1ee0cf3776f94a (patch) | |
tree | eca2a9d3076556c99dc8891bb13600870c93ef65 /git-p4.py | |
parent | fa46579555583a9799d8495f632b14cddd65db6e (diff) | |
parent | 4b07cd230a1759c0e9a1e4cf2397bd238ceae96b (diff) | |
download | git-922239e7da03f8e0a8c6ba809c1ee0cf3776f94a.tar.gz |
Merge branch 'dk/p4-import-ctypes'
"git-p4" tried to use from ctypes module without first importing
it.
* dk/p4-import-ctypes:
git-p4: import the ctypes module
Diffstat (limited to 'git-p4.py')
-rwxr-xr-x | git-p4.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -24,6 +24,7 @@ import shutil import stat import zipfile import zlib +import ctypes try: from subprocess import CalledProcessError |