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

enclose fmu unzip dir input in quotes for fortran read with forward slashes

parent 8b85fe1a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -160,8 +160,8 @@ def writeDeck(model, filename):
    if model.betaHTC is not None:
        group1Data.append("{{beta_htc}} {:15.3e}\n".format(model.betaHTC))
    if model.extSystemModel.get('fmu_unzip_directory', ''):
        group1Data.append("     {fmu_unzip_directory}  " + \
                model.extSystemModel['fmu_unzip_directory'] + "\n")
        group1Data.append("     {fmu_unzip_directory}  " + '"' + \
                model.extSystemModel['fmu_unzip_directory'] + '"' + "\n")

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