From a8e046e896100aac1d17fddef790ce0273b81a39 Mon Sep 17 00:00:00 2001 From: Bryan Herman Date: Thu, 3 Apr 2014 22:17:05 -0400 Subject: [PATCH] changed shutils to shutil --- tests/run_nightly_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/run_nightly_tests.py b/tests/run_nightly_tests.py index 0f84a535c9..91dbdabfd4 100755 --- a/tests/run_nightly_tests.py +++ b/tests/run_nightly_tests.py @@ -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'])