Skip to content

Commit

Permalink
fixed netlist inport into INTERCONNECT for windows users with a space…
Browse files Browse the repository at this point in the history
… in the user name (just added quotes around the include statment)

Former-commit-id: ee05bbd
  • Loading branch information
Jonas Flueckiger committed Mar 20, 2017
1 parent 0403152 commit 938a350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion klayout_dot_config/pymacros/INTERCONNECT.lym
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ else:
filename2 = '/tmp/%s.lsf' % topcell.name
filename_icp = '/tmp/%s.icp' % topcell.name

text_Spice_main += '.INCLUDE %s\n\n' % (filename_subckt)
text_Spice_main += '.INCLUDE "%s"\n\n' % (filename_subckt)

# Write the Spice netlist to file
file = open(filename, 'w')
Expand Down

0 comments on commit 938a350

Please sign in to comment.