HenningScheufler/OpenFOAMGen

trailing space after continuation

olesenm opened this issue · 1 comments

Eg,

incl += " -I{} \\ \n".format(i)

Should have something like this:

incl += "   -I{} \\\n".format(i)

Might need to add in some extra placeholder at the end of the loop as well, otherwise the generated file will end with a `\' as its final line.

fixed in commit cc7ff28