summaryrefslogtreecommitdiff
path: root/doc/user/nodes.sgml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/user/nodes.sgml')
-rw-r--r--doc/user/nodes.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/user/nodes.sgml b/doc/user/nodes.sgml
index b6bcb899..114e9e0a 100644
--- a/doc/user/nodes.sgml
+++ b/doc/user/nodes.sgml
@@ -300,7 +300,7 @@
import os.path
program_list = Program('hello.c')
program_name = str(program_list[0])
- if not os.path.exists(program_name)
+ if not os.path.exists(program_name):
print program_name, "does not exist!"
</programlisting>