Skip to content
Snippets Groups Projects
Commit 43326033 authored by Timo Koch's avatar Timo Koch
Browse files

[pnm][util] Fix missing new line in openpnm2dgf's dgf writer

parent 9fec51a9
No related branches found
No related tags found
1 merge request!3220[pnm][util] Fix missing new line in openpnm2dgf's dgf writer
Pipeline #19633 passed
+2
......@@ -323,6 +323,7 @@ def writeDGF(filename, net, geo, policy):
outputfile.write(
" ".join([str(v if idx > 1 else int(v)) for idx, v in enumerate(elementData[i])])
)
outputfile.write("\n")
outputfile.write("\n\n#\n")
outputfile.write("BOUNDARYDOMAIN\ndefault 1\n#")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment