Skip to content

Commit

Permalink
fixed missing double slash before e part
Browse files Browse the repository at this point in the history
  • Loading branch information
bradtom committed Mar 25, 2024
1 parent ac7d10c commit 209e9a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydsm/create_cd_inp.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def create_cd_inp(dss_filename, dsm2_input_filename, file_field_string):
s = '/'
# line = name+'\t'+node+'\t'+sign+'\t'+fillin+'\t'+file_field_string+'\t'+s+row[1]['A']+s+row[1]['B']+s+row[1]['C']+s+s+row[1]['E']+s+row[1]['F'].strip()+s+'\n'
# fout.write(line)
fout.write("%-15s %4s %5s %-7s %-18s /%s/%s/%s/%s/%s/\n" %
fout.write("%-15s %4s %5s %-7s %-18s /%s/%s/%s/%s//%s/\n" %
(name, node, sign, fillin, file_field_string, row[1]['A'], row[1]['B'], row[1]['C'], row[1]['E'], row[1]['F']))
fout.write("END\n")

Expand Down

0 comments on commit 209e9a9

Please sign in to comment.