From 3664a62666f92ba15e6c450cb794ba18fd662243 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh <aquynh@gmail.com> Date: Thu, 1 Sep 2016 20:21:47 +0800 Subject: [PATCH] bindings: fix a debug print in keystone.py --- bindings/python/keystone/keystone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/keystone/keystone.py b/bindings/python/keystone/keystone.py index f68d7b7..ee0e9e8 100644 --- a/bindings/python/keystone/keystone.py +++ b/bindings/python/keystone/keystone.py @@ -26,7 +26,7 @@ _found = False for _lib in _all_libs: try: _lib_file = join(_lib_path, _lib) - #print(">> 2: Trying to load %s" %_lib_file); + #print(">> 0: Trying to load %s" %_lib_file); _ks = cdll.LoadLibrary(_lib_file) _found = True break -- GitLab