changed shutils to shutil

This commit is contained in:
Bryan Herman 2014-04-03 22:17:05 -04:00
parent 2f9c6a8ae8
commit a8e046e896

View file

@ -217,7 +217,7 @@ valgrind_default_tests = "basic|cmfd_feed|confidence_intervals| \
tally_assumesep|translation|uniform_fs|universe|void"
# Begin testing
shutils.rmtree('build', ignore_errors=True)
shutil.rmtree('build', ignore_errors=True)
os.remove('ctestscript.run')
call(['./cleanup'])
for key in iter(tests):
@ -250,6 +250,6 @@ for key in iter(tests):
test.run_ctest()
# Clear build directory
shutils.rmtree('build', ignore_errors=True)
shutil.rmtree('build', ignore_errors=True)
os.remove('ctestscript.run')
call(['./cleanup'])