diff options
author | Ladislav Lhotka <lhotka@nic.cz> | 2018-10-19 15:08:53 +0200 |
---|---|---|
committer | Ladislav Lhotka <lhotka@nic.cz> | 2018-10-19 15:08:53 +0200 |
commit | f45f184a4308f03b6a917dc387855e55b35b63a8 (patch) | |
tree | 6c34c2a2ae867738ccb59367690f9f84cbb3d98b /python | |
parent | Merge branch 'fix_unplanned_re_sign' into 'master' (diff) | |
download | knot-f45f184a4308f03b6a917dc387855e55b35b63a8.tar.xz knot-f45f184a4308f03b6a917dc387855e55b35b63a8.zip |
Fix import
Diffstat (limited to 'python')
-rwxr-xr-x | python/libknot/control.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/libknot/control.py b/python/libknot/control.py index a7e540346..59b8fbd91 100755 --- a/python/libknot/control.py +++ b/python/libknot/control.py @@ -27,7 +27,7 @@ Example: from ctypes import cdll, c_void_p, c_int, c_char_p, c_uint, byref from enum import IntEnum -from sys import platform +import sys CTL_ALLOC = None CTL_FREE = None |