From 47f9adc6813cfd4817952b9122b1e3470f3e6362 Mon Sep 17 00:00:00 2001 From: "Dr. Irv" Date: Mon, 18 Jun 2018 15:46:40 -0400 Subject: [PATCH] Fix Java to Python example again Just realized that I didn't edit the example right the first time. Also - can you update https://jpy.readthedocs.io with this? --- doc/intro.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/intro.rst b/doc/intro.rst index 0054f634a9..bce161551c 100644 --- a/doc/intro.rst +++ b/doc/intro.rst @@ -91,7 +91,7 @@ then we can call the Python code from Java as follows :: PyModule plugInModule = PyLib.importModule("bibo_plugin"); // Call the Python class to instantiate an object - PyObject plugInObj = plugInClass.call("BiboPlugin"); + PyObject plugInObj = plugInModule.call("BiboPlugin"); // Create a Java proxy object for the Python object PlugIn plugIn = plugInObj.createProxy(PlugIn.class);