Commit f461e635 authored by Gurecky, William's avatar Gurecky, William
Browse files

adding braces around nodal_model in card 1.5

parent 763191ed
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -117,9 +117,9 @@ def writeDeck(model, filename):
   group1Data.append("     air     0.0001\n")
   group1Data.append("*Card 1.5\n")
   if model.editOptions['hdf5'] == True and model.is_nodal:
      group1Data.append("     nodal_model     1\n")
      group1Data.append("     {nodal_model}     1\n")
   else:
      group1Data.append("     nodal_model     0\n")
      group1Data.append("     {nodal_model}     0\n")

   # The Card Group 2 data to be written to the deck
   group2Data=[]