convert Python footprint generators to Python 3
[hw/altusmetrum] / packages / fuse345.py
old mode 100755 (executable)
new mode 100644 (file)
index 55c52d3..5687b6b
@@ -1,4 +1,4 @@
-#!/usr/bin/python2
+#!/usr/bin/python3
 # Copyright 2015 by Bdale Garbee <bdale@gag.com>.  GPLv2
 #
 # Program to emit PCB footprint for littlefuse 345 fuse holder
@@ -16,63 +16,63 @@ import sys
 def mm2mils100( mm ):
        return int( mm / 25.4 * 1000.0 * 100.0 + 0.5 )
 
-print '# author: Bdale Garbee'
-print '# email: bdale@gag.com'
-print '# dist-license: GPL 2'
-print '# use-license: unlimited'
+print('# author: Bdale Garbee')
+print('# email: bdale@gag.com')
+print('# dist-license: GPL 3')
+print('# use-license: unlimited')
 
-print 'Element[0x0 "littlefuse345" "" "" 0 0 0 0 0 100 0x0]'
-print "("
-print '   Pin(',\
+print('Element[0x0 "littlefuse345" "" "" 0 0 0 0 0 100 0x0]')
+print("(")
+print('   Pin(',\
        0, \
        0, \
        125, \
        30, \
        150, \
        56, \
-       '"pin1" "1" 0x0001)'
+       '"pin1" "1" 0x0001)')
 
-print '   Pin(',\
+print('   Pin(',\
        PinSpace1, \
        0, \
        125, \
        30, \
        150, \
        56, \
-       '"pin2" "2" 0x0001)'
+       '"pin2" "2" 0x0001)')
 
-print '   Pin(',\
+print('   Pin(',\
        PinSpace1 + PinSpace2, \
        0, \
        125, \
        30, \
        150, \
        56, \
-       '"pin3" "3" 0x0001)'
+       '"pin3" "3" 0x0001)')
 
 
-print '   ElementLine(',\
+print('   ElementLine(',\
        0, \
        -(BodyHeight/2), \
        0, \
        (BodyHeight/2), \
        5, \
-       ')'
+       ')')
 
-print '   ElementLine(',\
+print('   ElementLine(',\
        0, \
        -(BodyHeight/2), \
        BodyWidth, \
        -(BodyHeight/2), \
        5, \
-       ')'
+       ')')
 
-print '   ElementLine(',\
+print('   ElementLine(',\
        0, \
        (BodyHeight/2), \
        BodyWidth, \
        (BodyHeight/2), \
        5, \
-       ')'
+       ')')
 
-print ")"
+print(")")