summaryrefslogtreecommitdiff
path: root/src/examples/cLibHeader.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/examples/cLibHeader.py')
-rw-r--r--src/examples/cLibHeader.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/examples/cLibHeader.py b/src/examples/cLibHeader.py
index 115aa08..bb98521 100644
--- a/src/examples/cLibHeader.py
+++ b/src/examples/cLibHeader.py
@@ -20,6 +20,6 @@ arglist = delimitedList(Group(vartype("type") + ident("name")))
functionCall = Keyword("int") + ident("name") + "(" + arglist("args") + ")" + ";"
for fn,s,e in functionCall.scanString(testdata):
- print fn.name
+ print(fn.name)
for a in fn.args:
- print " - %(name)s (%(type)s)" % a
+ print(" - %(name)s (%(type)s)" % a)