diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-10-26 23:55:26 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-10-26 23:55:26 +0100 |
commit | 922239e7da03f8e0a8c6ba809c1ee0cf3776f94a (patch) | |
tree | eca2a9d3076556c99dc8891bb13600870c93ef65 /git-p4.py | |
parent | Merge branch 'jk/repository-extension' (diff) | |
parent | git-p4: import the ctypes module (diff) | |
download | git-922239e7da03f8e0a8c6ba809c1ee0cf3776f94a.tar.xz git-922239e7da03f8e0a8c6ba809c1ee0cf3776f94a.zip |
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 |