fixed material.config of elastic tests to run with new error, currently to strict, needs fix

removed long spectral example test from list of daily tests
This commit is contained in:
Martin Diehl 2013-09-20 16:23:52 +00:00
parent ad32aa3ced
commit 9f39405adf
1 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ class Material():
def __repr__(self):
me = []
for part in self.parts:
print('doing',part)
print('doing '+part)
me += ['','#-----------------------------#','<%s>'%part,'#-----------------------------#',]
for section in self.data[part]['__order__']:
me += ['','[%s] %s'%(section,'-'*max(0,27-len(section))),'',]
@ -263,4 +263,4 @@ def ex1():
print(mat)
mat.write(file='poop')
mat.write(file='poop',overwrite=True)