So, let us try something different (I am doing this blind really as I cannot reproduce the problem myself). Following Jean-Michel's advise, we will remove the ' ' (spaces) in front of each sub-line in your CAS file. So:
- reactivate the previous two lines (uncomment)
- modify the rewriteCAS() method in parsers/parserKeywords.py as follows:
was:
lcur = ''
for i in range(len(str(val[0]))/65+1):
lcur = lcur + ' ' + ( str(val[0])+65*' ' )[65*i:65*i+65] + '\n'
new:
lcur = ' '
for i in range(len(str(val[0]))/65+1):
lcur = lcur + ( str(val[0])+65*' ' )[65*i:65*i+65] + '\n'
Let me know. If this is successful, I will change it for the next version to the system.
Hope this helps,
Sebastien.