summaryrefslogtreecommitdiff
path: root/python/__init__.py
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2018-05-30 15:41:10 -0400
committerRyan Snyder <ryan@vector35.com>2018-07-10 18:11:09 -0400
commit5cff3bf3cc5aa11875569a6aeddf88ef867411f1 (patch)
tree95d57658dae88fef66196cf8c8ac52e771d73f3d /python/__init__.py
parent1c03ac08aa94f5bedf21ec8f48ee1ec998e0e50c (diff)
Various Python 3 support changes
Diffstat (limited to 'python/__init__.py')
-rw-r--r--python/__init__.py6
1 files changed, 2 insertions, 4 deletions
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):