Skip to content

Commit 46f5020

Browse files
committed
fix and better print message
1 parent 8e98f32 commit 46f5020

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

example_nodes/input_nodes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import os
12
from NodeGraphQt import BaseNode, QtCore
23

34

@@ -64,7 +65,7 @@ def run(self):
6465
data = fread.read()
6566
self.set_property('output', data)
6667
else:
67-
print('No existe %s' % path)
68+
print("%s doesn't exist!" % path)
6869
self.set_property('output', '')
6970

7071

0 commit comments

Comments
 (0)