fixed typo

This commit is contained in:
Martin Diehl 2014-06-07 08:36:43 +00:00
parent 0a4f3c43d1
commit 07765da01a
1 changed files with 3 additions and 3 deletions

View File

@ -134,7 +134,7 @@ class Test():
''' '''
Update reference with current results. Update reference with current results.
''' '''
loggin.debug('Update not necessary') logging.debug('Update not necessary')
return True return True
@ -198,7 +198,7 @@ class Test():
try: try:
shutil.copy2(os.path.join(source,file),self.fileInCurrent(targetfiles[i])) shutil.copy2(os.path.join(source,file),self.fileInCurrent(targetfiles[i]))
except: except:
loggin.error(os.path.join(source,file)) logging.error(os.path.join(source,file))
logging.critical('Base2Current: Unable to copy file %s'%file) logging.critical('Base2Current: Unable to copy file %s'%file)
@ -415,7 +415,7 @@ class Test():
logging.critical('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n') logging.critical('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
return 0 return 0
if culprit == -1: if culprit == -1:
loggin.warning('Warning: Could not start test') logging.warning('Warning: Could not start test')
return 0 return 0
else: else:
logging.critical(' ********\n * Test %i failed...\n ********'%(culprit)) logging.critical(' ********\n * Test %i failed...\n ********'%(culprit))