Skip to content

Commit

Permalink
Merge pull request #8 from ibm-watson-data-lab/printpython3
Browse files Browse the repository at this point in the history
ensure print uses parenthesis for print calls
  • Loading branch information
glynnbird authored Sep 29, 2017
2 parents ddfcc61 + 79bfd02 commit 14b515f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pixiedust_node/npm.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def cmd(self, command, module):
args.append(module)
else:
args.extend(module)
print ' '.join(args)
print (' '.join(args))
ps = subprocess.Popen( args, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, cwd = node_home)

# create thread to read this process's output
Expand Down
2 changes: 1 addition & 1 deletion pixiedust_node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pixiedust_node",
"version": "0.1.3",
"version": "0.1.4",
"description": "Run Node.js cells in Jupyter notebooks with Pixiedust",
"main": "pixiedustNodeRepl.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

setup(name='pixiedust_node',
version='0.1.3',
version='0.1.4',
description='Pixiedust extension for Node.js',
url='https://github.com/ibm-watson-data-lab/pixiedust_node',
install_requires=['pixiedust'],
Expand Down

0 comments on commit 14b515f

Please sign in to comment.