From 5cff3bf3cc5aa11875569a6aeddf88ef867411f1 Mon Sep 17 00:00:00 2001 From: KyleMiles Date: Wed, 30 May 2018 15:41:10 -0400 Subject: Various Python 3 support changes --- python/__init__.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'python/__init__.py') diff --git a/python/__init__.py b/python/__init__.py index a3ba0453..2f7cc5a0 100644 --- a/python/__init__.py +++ b/python/__init__.py @@ -118,10 +118,8 @@ class PluginManagerLoadPluginCallback(object): def __init__(self): self.cb = ctypes.CFUNCTYPE( ctypes.c_bool, - core.compatstring, - core.compatstring, - # ctypes.c_char_p, - # ctypes.c_char_p, + ctypes.c_char_p, + ctypes.c_char_p, ctypes.c_void_p)(self._load_plugin) def _load_plugin(self, repo_path, plugin_path, ctx): -- cgit v1.3.1