Skip to content

Commit

Permalink
Merge pull request #7 from ajalger/print_syntax_error
Browse files Browse the repository at this point in the history
fixed print command parens syntax error
  • Loading branch information
glynnbird authored Sep 29, 2017
2 parents b63edbc + af3085a commit ddfcc61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pixiedust_node/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self, path):
node_path = self.which('node')

if node_path == None:
print 'ERROR: Cannot find Node.js executable'
print ('ERROR: Cannot find Node.js executable')
raise FileNotFoundError('node executable not found in path')
else:
# create sub-process
Expand Down

0 comments on commit ddfcc61

Please sign in to comment.