diff options
author | Paulo Henrique Silva <ph.silva@gmail.com> | 2015-03-05 14:58:36 -0300 |
---|---|---|
committer | Paulo Henrique Silva <ph.silva@gmail.com> | 2015-03-05 14:58:36 -0300 |
commit | adc1ff6d72ac1201517fffcd8e377768be022e91 (patch) | |
tree | 8824004b54c3bd748cbc004ea444b098ff56ca08 /gerber/am_read.py | |
parent | a13b981c1c2ea9ede39e9821d9ba818566f044de (diff) | |
download | gerbonara-adc1ff6d72ac1201517fffcd8e377768be022e91.tar.gz gerbonara-adc1ff6d72ac1201517fffcd8e377768be022e91.tar.bz2 gerbonara-adc1ff6d72ac1201517fffcd8e377768be022e91.zip |
Fix for py3
Diffstat (limited to 'gerber/am_read.py')
-rw-r--r-- | gerber/am_read.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gerber/am_read.py b/gerber/am_read.py index ade4389..9fdd548 100644 --- a/gerber/am_read.py +++ b/gerber/am_read.py @@ -108,7 +108,7 @@ class Scanner: def print_instructions(instructions): for opcode, argument in instructions: - print "%s %s" % (OpCode.str(opcode), str(argument) if argument is not None else "") + print("%s %s" % (OpCode.str(opcode), str(argument) if argument is not None else "")) def read_macro(macro): |