missing bracket

This commit is contained in:
Martin Diehl 2015-05-22 06:17:35 +00:00
parent 7c0581e310
commit e8fb49edc6
1 changed files with 1 additions and 1 deletions

View File

@ -631,7 +631,7 @@ def ParsePostfile(p,filename, outputFormat):
for (name,N) in outputFormat['Crystallite']['outputs']: # add crystallite outputs
for i in range(N):
label = '%i_'%(grain+1) + '%i_'%(i+1) if N>1 else '' + name
label = '%i_'%(grain+1) + ('%i_'%(i+1) if N>1 else '') + name
stat['IndexOfLabel'][label] = startIndex + offset
stat['LabelOfElementalScalar'][startIndex + offset] = label
offset += 1