python: OpenSCAD: *.py: Fix python3 syntax

This commit is contained in:
Priit Laes
2016-03-12 13:09:42 +02:00
committed by looooo
parent ab7a748629
commit 839e7eed22
9 changed files with 200 additions and 200 deletions

View File

@@ -132,5 +132,5 @@ t_ignore = " \t\r"
# Error handling rule
def t_error(t):
print "Illegal character '%s'" % t.value[0]
print("Illegal character '%s'" % t.value[0])
t.lexer.skip(1)