aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/setup.py6
-rw-r--r--python/toree_kernel.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/python/setup.py b/python/setup.py
index 307fcd4..eed2f4b 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -1,11 +1,11 @@
from setuptools import setup
-setup(name='toree_kernel',
+setup(name='toree_proxy_kernel',
version='0.1',
- description='Toree Client Kernel',
+ description='Toree Client Proxy Kernel',
long_description='A simple echo kernel for Jupyter/IPython, based on MetaKernel',
- py_modules=['toree_kernel'],
+ py_modules=['toree_proxy_kernel'],
install_requires=['metakernel', 'py4j'],
classifiers = [
'Framework :: IPython',
diff --git a/python/toree_kernel.py b/python/toree_kernel.py
index 9734ffa..fd30d6b 100644
--- a/python/toree_kernel.py
+++ b/python/toree_kernel.py
@@ -71,7 +71,7 @@ class ToreeKernel(MetaKernel):
def Error(self, output):
if not output:
return
-
+
super(ToreeKernel, self).Error(output)
def handle_output(self, fd, fn):